Command Window (Whole Program Iterations)

2 次查看(过去 30 天)
Is it possible to check the whole history of a program which has let say i=20000 iteration. I have tried to debug the code but everything works fine till i=200 but i can't go till 20000.
The thing is when the program finishes, i can only see last couple of hundred iterations.
Is there anyway,i can check the whole program iteration(other than debugging)

采纳的回答

the cyclist
the cyclist 2011-9-2
There are at least two approaches that you can take in this situation:
(1) Use "cell mode". Use a conditional breakpoint to stop the code just before it hits the bad iteration. Then, enclose the failing part of the code in a cell (surrounding by "%%" before and after), and you can execute only the failing part. When it crashes, it will not take you completely out of the program.
(2) Save the workspace, and start from there each time. Again, use a conditional breakpoint to stop just before the bad iteration. Save the workspace. Then, instead of running the code for the first 200 iterations, just load the workspace, and run the rest of the code from there.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Debugging and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by