how to do sum up elements one by one (sequence addition)
古いコメントを表示
[1 2 3 4] to [1 3 6 10] i.e 1=1 ; 1+2=3; 1+2+3=6; so on
回答 (2 件)
halleyhit
2017 年 1 月 8 日
0 投票
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
2017 年 1 月 9 日
cumsum([1 2 3 4]) equals [1 3 6 10]
カテゴリ
ヘルプ センター および File Exchange で Simulink についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!