필터 지우기
필터 지우기

for loop and break!!!

조회 수: 2 (최근 30일)
ck
ck 2016년 5월 3일
댓글: ck 2016년 5월 3일
for(syntax)-(1st for loop)
for(syntax)(2nd for loop)
if(...)
value
break
end
else(..)
value
end
...
....
...
so would the break help in coming out from the first and second for loop , or just second for loop??

채택된 답변

Image Analyst
Image Analyst 2016년 5월 3일
You need to set a flag to break out of the outer loop
finishNow = false;
for k1 = 1 : 1000
for k2 = 1 : 3000
if someCondition
finishNow = true;
break; % out of inner loop.
end
end
if finishNow
break; % out of outer loop.
end
end
  댓글 수: 1
ck
ck 2016년 5월 3일
Thanks guys!

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

추가 답변 (1개)

CS Researcher
CS Researcher 2016년 5월 3일
Break will work for the loop it is in, so the second for loop. It is always good to run an example and check:
for i = 1:10
for j = 1:2
if j == 2
break;
else
fprintf('(i,j) = (%d,%d)\n',i,j);
end
end
end
As you will see i goes all the way from 1 to 10 but j is always 1. Hope this helps!

카테고리

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