How to break out of loop when debugging?
35 次查看(过去 30 天)
显示 更早的评论
I tried using the break statement, but I just get a Error: A BREAK statement appeared outside of a loop. Use RETURN instead. error despite the fact that I am definitely inside a while loop right now.
2 个评论
回答(1 个)
Sahithi Kanumarlapudi
2020-4-21
Hi,
If you are trying to know how to come out of a loop while debugging, you could just place a breakpoint just below the loop and click on continue(F5).
As far as the error is concerned, you might have probably missed or misplaced an 'end'.
2 个评论
mikhailo
2020-12-16
I had exactly the same thought while debugging a lengthy file: every-time setting a breakpoint and typing F5 feels clumsy.
As a user I would suggest the following: make a hotkey to exit the loop in debugging mode, for example ctrl-shift-F11.
I think it is potentially a handy feature that users would appreciate.
Walter Roberson
2020-12-16
In the editor you can point to a line, right click and choose "run to cursor"
另请参阅
类别
在 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!