Update array elements with the element before

조회 수: 2 (최근 30일)
Rayad Hallak
Rayad Hallak 2022년 11월 3일
댓글: Rayad Hallak 2022년 11월 3일
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일
V = 1:6
V = 1×6
1 2 3 4 5 6
Z = cumsum(V)
Z = 1×6
1 3 6 10 15 21

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by