How to Find average value for every 10 sets of a matrix

1 visualización (últimos 30 días)
Magdy Ismail
Magdy Ismail el 15 de En. de 2021
Comentada: Mischa Kim el 15 de En. de 2021
I have a one dimensional array A of 1000 elements.
How do I calculate the mean of elements for the first 10 sets ,then the second sets, and third sets so on until 1000

Respuesta aceptada

Mischa Kim
Mischa Kim el 15 de En. de 2021
Hi Magdy, you could use something like:
x = 1:1:12; % this would be your matrix A
y = reshape(x,3,4)
m = mean(y,1)
  2 comentarios
Magdy Ismail
Magdy Ismail el 15 de En. de 2021
Thank you so much so for an example if i have like 1000 numbers
the code should be like this
x = 1:1:1000; % this would be your matrix A
y = reshape(x,10,100 )
m = mean(y,1)
Right? this will give me the average for each 10 sets?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by