필터 지우기
필터 지우기

Command Window (Whole Program Iterations)

조회 수: 2 (최근 30일)
Mustafa
Mustafa 2011년 9월 2일
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.
  댓글 수: 1
Mustafa
Mustafa 2011년 9월 2일
Thanks both approaches sounds good. I will give it a try.

댓글을 달려면 로그인하십시오.

추가 답변 (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