add result to next entry of the column
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a column as:
1
2
3
4
5
and so on....
I have to add a no. 25 to first enrty and then add the result to next entry...then this result to the 3rd entry...and so on...i.e in above case
25 + 1= 26
26 + 2 = 28
28 + 3 = 31
31+ 4 = 35
and so on...
plz help me....
댓글 수: 0
채택된 답변
Chandrasekhar
2014년 4월 9일
편집: Chandrasekhar
2014년 4월 9일
if a is your initial array then
sum = 25;
for i = 1:length(a)
sum = sum+a(i);
end
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!