필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Matrix in a for loop

조회 수: 2 (최근 30일)
Abed
Abed 2014년 12월 5일
마감: MATLAB Answer Bot 2021년 8월 20일
How could you add items into a matrix within a for loop without having to do stuff like this:
matrix(i,1) = [i ;];
matrix(i,2) = [a(i);];
matrix(i,3) = [b(i);];
matrix(i,4) = [Rsquared_eff(i);];
matrix(i,5) = [z(i);];
matrix(i,6) = [t(i);];
matrix(i,7) = [Rsquared_tox(i);];

답변 (1개)

Star Strider
Star Strider 2014년 12월 5일
This is how I would do it:
for k1 = 1:n
matrix(:,k1) = [k1; a(k1); b(k1); Rsquared_eff(k1); z(k1); t(k1); Rsquared_tox(k1)];
end
I changed the loop counter to ‘k1’ because MATLAB uses i and j for its imaginary operators. Using them as loop counters can create confusion.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by