필터 지우기
필터 지우기

Help with a for loop and matrices

조회 수: 1 (최근 30일)
Noah Wilson
Noah Wilson 2019년 6월 25일
답변: Rajat Gupta 2019년 6월 25일
I currently have this code where SizeChem is a 24x7 matrix and newcolum is a 24x1 matrix.
newcolumn = sum(SizeChem,2);
for i = 1:length(SizeChem)
T(i) = sum(newcolum(1:i,1));
end
I am wanting to create some arrays or variables that are the sum of the new column but summing one more row than the last. Then I want to take all those individual values and put them back into a matrix (24x1) starting with T{1} thru T{24}. I am also getting the error:
Undefined function or variable 'newcolum'.
Error in Analysis_plots (line 26)
T(i) = sum(newcolum(1:i,1));
I am not sure why this is. Thanks for the help in advanced.

채택된 답변

Rajat Gupta
Rajat Gupta 2019년 6월 25일
It should be newcolumn instead of newcolum in your loop body.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by