How to break a for loop but then continue with the rest of code
2 次查看(过去 30 天)
显示 更早的评论
Hi I have this situation and I have done coding but my code don't break when all nodes get data.
Can you guide me.
0 个评论
采纳的回答
Jos (10584)
2016-2-18
Use break
for k=1:100,
if rand < 0.2
disp('Break out of for loop')
break
end
end
disp(k) % almost never reached 100
更多回答(1 个)
Fangjun Jiang
2016-2-18
编辑:Fangjun Jiang
2016-2-18
Use continue or break to control the for-loop.
help continue
help break
另请参阅
类别
在 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!