Code running multiple times for different elements of a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Andreas S
el 9 de Oct. de 2020
Comentada: Matt J
el 10 de Oct. de 2020
Hi everyone. I need some help to code this problem:
The data is 480x10 matrix(ret). I want to calculate the mean of each column from the past 120 elements of the same column
m1=mean(ret(1:120,1:10))
m2=mean(ret(2:121,1:10))
...
m360=mean(ret(360:480,1:10))
How can i do it with a loop and receive the results in a matrix 360x10.
1 comentario
Matt J
el 9 de Oct. de 2020
I think you mean,
m360=mean(ret(360:479,1:10))
m361=mean(ret(361:480,1:10))
Respuesta aceptada
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!