フィルターのクリア

debugging a callback function

5 ビュー (過去 30 日間)
Alexander
Alexander 2013 年 7 月 18 日
回答済み: Julian Dönges 2021 年 10 月 27 日
Hi, I am trying to produce a code that plots certain information in a gui figure so that the user can make a decision, based on the plot, which function to execute next. The functions are executed by buttons on the gui figure. As the functions are triggered by callbacks if I try to debug as normal I am not able to access the function. How can I get into the function to find my error?
Thanks

採用された回答

per isakson
per isakson 2013 年 7 月 18 日
編集済み: per isakson 2013 年 7 月 19 日
"[...] debug as normal [...]"? Could you provide an example? I would either set
>> dbstop if error
or set a breakpoint in the callback function before I fire the callback.
Here are some links on debugging in Matlab
  2 件のコメント
Alexander
Alexander 2013 年 7 月 19 日
Sorry, I should have been clearer. debug as normal was in reference to the manual method of adding break points in the scripts and waiting for the code to reach that point. dbstop is a fantastic tool. I am thankful for learning of it.
per isakson
per isakson 2013 年 7 月 19 日
I'm glad the tip was helpful. See above, I added three links on debugging in Matlab.

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

その他の回答 (2 件)

KAE
KAE 2017 年 6 月 8 日
There is info on debugging a GUI here, both in the video and the comments.

Julian Dönges
Julian Dönges 2021 年 10 月 27 日
Breakpoints in callbacks work only if you also set a breakpoint in the caller function/script. So, you could add a line of pause(0.1); to the caller function/script and set a breakpoint there. When the caller is stopped at that breakpoint, the breakpoint inside the callback will work as well.

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by