Can we stop at particular number of iteration?

7 ビュー (過去 30 日間)
Husni
Husni 2012 年 11 月 16 日
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 件のコメント
Husni
Husni 2012 年 11 月 16 日
what do you mean? the structure is similar to this (sorry not to post the code since it is very long):
for k= 1:10.000
%statement1 --------------
%statement2
end
and I want to stop at k=500 as example
C.J. Harris
C.J. Harris 2012 年 11 月 16 日
Why don't you just run your for loop 500 times instead of 10000?

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

採用された回答

Jan
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 件のコメント
Husni
Husni 2012 年 11 月 16 日
Many thanks jan, It is what I want
Ali

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

その他の回答 (1 件)

Lakshminarayana Reddy Tamatam
Lakshminarayana Reddy Tamatam 2018 年 11 月 20 日
Use 'keyboard' command to debug.
if i = 500
keyboard
end

カテゴリ

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