How to calculate of average numbers every n rows?

69 visualizaciones (últimos 30 días)
Shaochen Hu
Shaochen Hu el 11 de Ag. de 2019
Comentada: Lucas Maes el 22 de Oct. de 2021
For example I have a 30*10 matrix, I want to calculate a averager number for each column every 3 rows. The result should be a 10*10 matrix.

Respuesta aceptada

John D'Errico
John D'Errico el 11 de Ag. de 2019
Editada: John D'Errico el 11 de Ag. de 2019
Pretty easy. What you need to learn is how MATLAB stores numbers in an array, how to reshape things so that you get what you want.
For example, suppose you reshaped the array to be 3x10x10? Essentially, then each column of the new result will be the three numbers that you want to average. The idea is to bring the numbers you want to associate into ONE column, with each set as one column.
Then you would take the mean of each solumn of that array. The result would be 1x10x10, and we will have averaged the elements together that you wanted averaged.
Getting close. Now all you need do is reshape that result to be 10x10. Or, you could learn to use the squeeze function, and why that function is valuable.
The point is to visualize how the data lives in your array. Then think about how to get where you want to go. So this should work:
B = squeeze(mean(reshape(A,[3,10,10]),1));
  4 comentarios
EP
EP el 22 de Sept. de 2021
Can you take the average and keep the same number of columns? Just set both columns equal to the average?
Lucas Maes
Lucas Maes el 22 de Oct. de 2021
Nice explanation, thanks :)

Iniciar sesión para comentar.

Más respuestas (1)

WENLI QIAO
WENLI QIAO el 15 de Nov. de 2019
It is incredible! CRAZY LIKE!!!!!

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by