how to do sum up elements one by one (sequence addition)
Afficher commentaires plus anciens
[1 2 3 4] to [1 3 6 10] i.e 1=1 ; 1+2=3; 1+2+3=6; so on
Réponses (2)
halleyhit
le 8 Jan 2017
0 votes
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
le 9 Jan 2017
cumsum([1 2 3 4]) equals [1 3 6 10]
Catégories
En savoir plus sur Simulink dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!