Info
此问题已关闭。 请重新打开它进行编辑或回答。
What is wrong with: dbstop in sake_cut_block2 at 10 if 'i == 559' ?
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I would like to pause the execution of a function (I wrote) at a specific location, when an expression evaluates to true.
More specifically, I have a counter (i), and when it reaches a specific value, I want MATLAB to pause the execution and enter debug mode.
From the documentation (<http://uk.mathworks.com/help/matlab/ref/dbstop.html?refresh=true)>, I understand that the command below should do the trick, but the file does not pause.
dbstop in sake_cut_block2 at 10 if 'i == 559'
Can anyone tell me what I am doing wrong? - thanks!
0 个评论
回答(2 个)
Image Analyst
2015-11-13
I didn't see where they made the condition a string. What happens if you just use the condition as a boolean and not as a string literal?
dbstop in sake_cut_block2 at 10 if i == 559
4 个评论
Image Analyst
2015-11-13
Ah - a key thing you left out (the line of code it was supposed to stop on). Another thing - if the line you say to stop on is a comment, then it will stop at the next executable line of code.
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!