stop execution of code to check results

조회 수: 1 (최근 30일)
Robert Demyanovich
Robert Demyanovich 2021년 9월 11일
편집: Star Strider 2021년 9월 11일
Is there a way to stop code from executing so that results can be checked. For example something like
if i == 100000
Stop
end
I want to check the values of a parameter when the iteration is equal to 100,000.
How can I do that?

채택된 답변

Star Strider
Star Strider 2021년 9월 11일
편집: Star Strider 2021년 9월 11일
I would just display it instead —
if i == 100000
fprintf('Parameter = %f at iteration %d\n', Parameter, i)
end
Also consider the pause function.
Of course, it is also possible to save these to a vector.
.

추가 답변 (2개)

the cyclist
the cyclist 2021년 9월 11일
One way would be to use the debugger, specifically a conditional breakpoint.

Walter Roberson
Walter Roberson 2021년 9월 11일
Use keyboard

카테고리

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