extracting values from embedded for loops

조회 수: 2 (최근 30일)
darksideofthemoon101
darksideofthemoon101 2011년 4월 7일
Hi,
I have one loop embedded inside another and want to extract the innermost value for each change in both the inner loop and outer loop. My code is analogous to (but much more complex than):
for x=1:1:M
for y=1:1:N
z=x*y;
answer1(y)=z;
end
end
The line 'answer1(y)' will create an array with N elements, each corresponding to the given y. However if i put a similar line in the outer for loop I get a dimension error. Any suggestions?
Thanks,
Richard

채택된 답변

Arnaud Miege
Arnaud Miege 2011년 4월 7일
I think what you really should do is something like:
answer1 = zeros(M,N); % pre-allocate variable
for x=1:1:M
for y=1:1:N
z=x*y;
answer1(x,y)=z;
end
end
Then you have all the data from each loop iteration.
HTH,
Arnaud

추가 답변 (0개)

카테고리

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