Breakpoints in code. Something equivalent to the Stop command in interpreted Basic.
이전 댓글 표시
I'm wanting to put permanent breakpoints in code. Something equivalent to the Stop command in interpreted Basic. As with the Editor's breakpoints, I want the cursor to be at the interruption point. And I want to continue with F5. Any ideas?
채택된 답변
추가 답변 (1개)
Walter Roberson
2017년 3월 6일
편집: KSSV
2021년 2월 10일
2 개 추천
댓글 수: 8
John
2017년 3월 6일
Walter Roberson
2017년 3월 6일
The editor breakpoints are dbstop commands. If you click in the editor to set a breakpoint and use "dbstatus" you will see a dbstop is in effect; likewise if you dbstop and then open the file in the editor you will see the breakpoint graphic in the appropriate place.
To stop at the line after the current one, you can use
ST = dbstack; dbstop('in', ST.file, 'at', str2num(ST.line+1));
John
2017년 3월 7일
Walter Roberson
2017년 3월 7일
Ah, it should probably be
ST = dbstack; dbstop('in', ST(1).file, 'at', str2num(ST(1).line+1));
Walter Roberson
2017년 3월 7일
function STOP
ST = dbstack;
if length(ST) < 2; return; end
dbstop('in', ST(2).file, 'at', str2num(ST(2).line+1));
end
Put that on your path, and then you should be able to insert calls to
STOP
Note: I have not tested to see what happens if the next line is not executable or is the end of a control structure.
Ali Komai
2020년 11월 24일
Thanks Walter, very useful little function! You have there a little typo though. It should read num2str and not str2num.
John
2020년 11월 24일
Ivan Nascimento
2021년 7월 8일
편집: Ivan Nascimento
2021년 7월 8일
Walter's STOP worked perfectly for me but only once I changed str2num to num2str, since dbstop receives a string as argument and ST(2).line is double. It works even when it is called before a comment or blank line (it stops in the next executable line, if it exists). Thank you, Walter!
EDIT. From dbstop help: To resume execution, use dbcont or dbstep. To exit from the debugger, use dbquit.
카테고리
도움말 센터 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!