Can we stop at particular number of iteration?
6 views (last 30 days)
Show older comments
Husni
on 16 Nov 2012
Answered: Lakshminarayana Reddy Tamatam
on 20 Nov 2018
I have a loop. The number of iteration is very big. Usually it produce error at iteration >500. can I run the loop and stop a few step before error? If I use debug, I need to run almost 500 iteration manually and it is tiring .
Best regard
Ali
3 Comments
Accepted Answer
Jan
on 16 Nov 2012
Edited: Jan
on 16 Nov 2012
Solution 1:
dbstop if error
Then Matlab stops, when an error occurs.
Solution 2:
for k = 1:5e5
if k == 500
disp('dummy line'); % <- set a breakpoint in this line
end
... your code
end
Instead of a breakpoint, the "keyboard" command would be sufficient also.
Of course the debugger has more powerful options, but this simple methods work in other programming languages also and are easy to remember.
More Answers (1)
Lakshminarayana Reddy Tamatam
on 20 Nov 2018
Use 'keyboard' command to debug.
if i = 500
keyboard
end
0 Comments
See Also
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!