フィルターのクリア

Breakpoints

4 ビュー (過去 30 日間)
Horia
Horia 2011 年 8 月 2 日
編集済み: Walter Roberson 2018 年 2 月 20 日
Is there any method to set breakpoints to all the lines of a .m file, except manually one by one?

回答 (4 件)

Jan
Jan 2011 年 8 月 2 日
As Sean and Jiang I do not think that this is useful. But if you are sure that you need it:
i = 1;
while 1
try
dbstop(FuncName, sprintf('%d', i));
i = i + 1;
catch
break;
end
end
  2 件のコメント
math07 rizqi
math07 rizqi 2011 年 8 月 22 日
thanks, this answer really helped me.
Jan
Jan 2011 年 8 月 22 日
Is your problem solved?

サインインしてコメントする。


Sean de Wolski
Sean de Wolski 2011 年 8 月 2 日
Why not just set one on the first line and step through it?
doc dbstop
doc dbstep
  2 件のコメント
Horia
Horia 2011 年 8 月 2 日
A tedious solution.
Moreover, it doesn't work inside loops for errors due to something else than the loop itself.
Sean de Wolski
Sean de Wolski 2011 年 8 月 2 日
How does it work any differently than having a break point on that line?

サインインしてコメントする。


Fangjun Jiang
Fangjun Jiang 2011 年 8 月 2 日
Why do you need that? You can debug by running code line by line (pressing F10).
  2 件のコメント
Horia
Horia 2011 年 8 月 2 日
A tedious solution.
Moreover, it doesn't work inside loops for errors due to something else than the loop itself.
Image Analyst
Image Analyst 2011 年 8 月 2 日
That doesn't make any sense. Typing F5 or F10 WILL work, even if you're stepping on a line that generates an error. How would an error get generated anyway, if not due to executing a statement in the loop that you are in? Doesn't make sense, unless you had some kind of parallel processing going and THAT process generated the error. Even that doesn't negate the fact that F5 and F10 will still work.

サインインしてコメントする。


Walter Roberson
Walter Roberson 2011 年 8 月 2 日
Yes, you can construct a script that would do this by issuing "dbstop" calls on your behalf. But like the others I do not see much point in it.
  7 件のコメント
Jan
Jan 2011 年 8 月 2 日
@Horia: Did my code what you want? If sets a break point in each line of the M-file, whose name is store in the variable FuncName. Does this differ from the requested behaviour, and if so, how?
Walter Roberson
Walter Roberson 2018 年 2 月 20 日
編集済み: Walter Roberson 2018 年 2 月 20 日
If you were plotting a variable named values then
values(values<0) = nan;
MATLAB knows to skip plotting points with value nan.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by