Add value in column to previous?

조회 수: 2 (최근 30일)
matlabuser12
matlabuser12 2015년 1월 15일
편집: matlabuser12 2015년 1월 15일
data_input=[1;1;1;1;1;1;1]
data_output=[1;2;3;4;5;6;7]
how can i achieve this with a for loop? basically take the preceding value and add it to the next one and then repeat as new values emerge.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 1월 15일
편집: Azzi Abdelmalek 2015년 1월 15일
a=[1 1 1 1 1]
b=cumsum(a)
  댓글 수: 1
matlabuser12
matlabuser12 2015년 1월 15일
편집: matlabuser12 2015년 1월 15일
for some reason i thought that summed the whole column and never tried it. thanks!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by