how to do sum up elements one by one (sequence addition)
Ältere Kommentare anzeigen
[1 2 3 4] to [1 3 6 10] i.e 1=1 ; 1+2=3; 1+2+3=6; so on
Antworten (2)
halleyhit
am 8 Jan. 2017
0 Stimmen
just a hint: [1 3 6 10]'=[1 1 1 1;0 1 1 1; 0 0 1 1; 0 0 0 1]*[1 2 3 4]'
Roger Stafford
am 9 Jan. 2017
cumsum([1 2 3 4]) equals [1 3 6 10]
Kategorien
Mehr zu Simulink finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!