Can we stop at particular number of iteration?
조회 수: 6 (최근 30일)
이전 댓글 표시
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
채택된 답변
Jan
2012년 11월 16일
편집: Jan
2012년 11월 16일
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.
추가 답변 (1개)
Lakshminarayana Reddy Tamatam
2018년 11월 20일
Use 'keyboard' command to debug.
if i = 500
keyboard
end
댓글 수: 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!