How to sum a specific number of observations through an entire dataset ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
TRAILOKYA
am 17 Mai 2014
Beantwortet: Mischa Kim
am 17 Mai 2014
Sir i have a dataset (say m(750,1)). I have to sum 75 observations from beginning . Means i need sum of 1-75, 76-150, 151-225 ....676-750 observations so that i get the result as m_result(10,1). Would you please help me?
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 17 Mai 2014
TRAILOKYA, if it is a numeric array use reshape
m_result = sum(reshape(m,75,[]));
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!