Array operation inside summing

조회 수: 1 (최근 30일)
Hems
Hems 2016년 7월 25일
댓글: Hems 2016년 8월 2일
I would like to make an array "A" from another array called "B" by summing up all previous elements till that element position ....please see below example
A=[1 2 3 4 5] and B array has to as follows
B=[1 1+2 1+2+3 1+2+3+4 1+2+3+4+5]
Please help me out I have quiet a big array to sum up like this.
  댓글 수: 1
Hems
Hems 2016년 7월 25일
편집: Azzi Abdelmalek 2016년 7월 25일
I found by myself thanks anyways guys...
a=[1 2 3 4 5];
b(1,1)=a(1,1)
for i=2:length (a)
b(1,i)=sum(a(1,1):a(1,i))
end
if you have any other ways please post it as well. Thanks!

댓글을 달려면 로그인하십시오.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 7월 25일
편집: Azzi Abdelmalek 2016년 7월 25일
A=[1 2 3 4 5]
B=cumsum(A)

추가 답변 (0개)

카테고리

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