如果我经常在Matlab命令行中键入dbstop if error
来捕获和调试错误,但除了转到调试菜单和窗口(我不知道如何在新的2012b版本中找到它)之外,是否有方法在命令行中禁用dbstop if error
?
最佳答案
从dbclear
dbclear if error
使用dbstop if error
和dbstop if error identifier
语句删除断点集。
关于debugging - 如果MATLAB中出现错误,如何禁用dbstop,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12837486/