Update array elements with the element before

Hey, How can i update array elements by adding to each element the whole elements before, e.g if i have an array with (1 2 3 4 5 6) i want to have the answer of (1 1+2 1+2+3 1+2+3+4 --------)?
Best regards!

回答 (1 件)

Stephen23
Stephen23 2022 年 11 月 3 日
編集済み: Stephen23 2022 年 11 月 3 日

0 投票

V = 1:6
V = 1×6
1 2 3 4 5 6
Z = cumsum(V)
Z = 1×6
1 3 6 10 15 21

1 件のコメント

Rayad Hallak
Rayad Hallak 2022 年 11 月 3 日
Thank you this was really helpfull!

サインインしてコメントする。

カテゴリ

タグ

質問済み:

2022 年 11 月 3 日

コメント済み:

2022 年 11 月 3 日

Community Treasure Hunt

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

Start Hunting!

Translated by