for loop and break!!!
Show older comments
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??
Accepted Answer
More Answers (1)
CS Researcher
on 3 May 2016
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!
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!