필터 지우기
필터 지우기

Storing for loop calculations

조회 수: 1 (최근 30일)
Eric
Eric 2014년 5월 13일
답변: Image Analyst 2014년 5월 14일
I am interested in storing all the results of a for loop in separate matrices. How do I write a function such that Matlab will store the matrix result of, say, the ith iteration as [Ai]?

답변 (1개)

Image Analyst
Image Analyst 2014년 5월 14일
for k = 1 : whatever
A(k) = blahblahFooBar;
end
It's recommended to use variables other than i and j (imaginary variables) as loop indexes.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by