What is wrong with: dbstop in sake_cut_block2 at 10 if 'i == 559' ?
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
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 件のコメント
Karin
2015 年 11 月 13 日
Karin
2015 年 11 月 13 日
Karin
2015 年 11 月 13 日
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!