How to temporarily pause execution of a function for troubleshooting

1 回表示 (過去 30 日間)
Telema Harry
Telema Harry 2021 年 6 月 22 日
コメント済み: Telema Harry 2021 年 6 月 22 日
Hello Programmers,
I have sets of ODE equation that I am solving using ODE45.
For some unknown reasons, the model gives unrealistic result after 1600 seconds and the program terminates.
The model gives complex number as output.
I will like to pause the code as soon as any of the variable return a complex number and troubleshoot.
I used the "pause" command but i could not troubleshoot.
It is possible to do something like that in matlab

採用された回答

Jan
Jan 2021 年 6 月 22 日
編集済み: Jan 2021 年 6 月 22 日
This is a job for the debugger:
if ~isreal(Variable)
keyboard
end
Or:
if ~isreal(Variable)
disp('problem reached') % And set a breakpoint here
end

その他の回答 (1 件)

Matt J
Matt J 2021 年 6 月 22 日

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by