d***n 发帖数: 412 | 1 我的一个matlab程序运行了很久,没有结果,我想把程序暂停,察看一下中间变量的结
果,可是我之前没有设断点,也没有设pause,现在要怎么做才能把他停下来,察看一
下变量呢?
谢谢! |
c******m 发帖数: 599 | 2 直接停了吧, ctrl+c
临时暂停估计不行
【在 d***n 的大作中提到】 : 我的一个matlab程序运行了很久,没有结果,我想把程序暂停,察看一下中间变量的结 : 果,可是我之前没有设断点,也没有设pause,现在要怎么做才能把他停下来,察看一 : 下变量呢? : 谢谢!
|
d***n 发帖数: 412 | 3 直接停了,我可以看到中间变量的值吗?
【在 c******m 的大作中提到】 : 直接停了吧, ctrl+c : 临时暂停估计不行
|
c****p 发帖数: 6474 | 4 如果不是函数,肯定可以。
如果是函数,不确定。。。
想调试的话可以在语句里面加keyboard,
看完变量以后打return继续运行;
如果发现错误了想在keyboard的提示符处终止程序用dbquit。
更详细的信息,请doc keyboard。
【在 d***n 的大作中提到】 : 直接停了,我可以看到中间变量的值吗?
|
g****y 发帖数: 199 | 5 sorry, no way! Ctrl+C to break the whole program and run again.. just
remember to add breakpoint or printf next time. |
b***k 发帖数: 2673 | 6 why not print this variable inbetween?
it's easy to do it in matlab, right? just omit the ; sign.
【在 g****y 的大作中提到】 : sorry, no way! Ctrl+C to break the whole program and run again.. just : remember to add breakpoint or printf next time.
|