How can I sum each 3 columns array?

Hi, i want to sum each 3 columns of my array for any array dimension.
For example, Y array is the sum of each X array respectively to its color.
Need this to do sum for Nx150 array, so that it can turn into Nx50 array
Thanks!

 Risposta accettata

m=movsum(x,3);
y=m(:,1:3:end);

3 Commenti

ang bn
ang bn il 14 Ott 2021
Modificato: ang bn il 14 Ott 2021
I'm sorry, is "movesum" a new function? because i couldnt find it in my matlab (r2015a)
thanks
Edit:
I just knew we can do matlab online, and it works perfectly, thank you so much!
movsum is R2016a and newer
okay now I'll just do matlab online, maybe later I will install newer version
thanks!

Accedi per commentare.

Più risposte (1)

reshape(x, size(x,1), 3, [])
now you can sum along the second dimension, and then reshape to remove the now-singular second dimension.

Prodotti

Release

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by