Problem with break statement
4 次查看(过去 30 天)
显示 更早的评论
I have a code:
for i=1:n
for j=1:n
if 'some condition'
'some logic'
if 'some condition'
break
end
end
end
end
now my question is that if the 2nd if statement is true and it breaks shouldnt it end the 2nd for loop since if statement is under 2nd for loop but whenever I run this if the 2nd if statement is true and it breaks it ends the 1st for loop.
Any guidance is highly appreciated.
0 个评论
采纳的回答
Adam Danz
2020-11-17
编辑:Adam Danz
2020-11-17
> ...shouldn't it end the 2nd for loop since if statement is under 2nd for loop... ?
Yes, it should end the 2nd loop and that's what it's doing. To better understand what's going on, I inserted fprintf commands in each loop so you can see the iteration numbers. The first condition is true when j==2 and the second nested condition is true when i==3 (while j is equal to 2).
clc
n = 4;
for i=1:n
j = NaN;
fprintf('\n i=%d, j=%d',i,j)
for j=1:n
fprintf('\n i=%d, j=%d',i,j)
if j==2
fprintf(' CONDITION 1')
if i==3
fprintf(' & CONDITION 2: breaking')
break
end % end i==2 test
end % end j==2 test
end
end
fprintf('\n')
You can see (below) that the break condition occurs when i==3 and j==2 and on the next iteration, the i-loop interates to i==4 and the j-loop resets.
6 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!