debugging a callback function
古いコメントを表示
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
採用された回答
その他の回答 (2 件)
KAE
2017 年 6 月 8 日
0 投票
Julian Dönges
2021 年 10 月 27 日
0 投票
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.
カテゴリ
ヘルプ センター および File Exchange で Debugging and Analysis についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!