필터 지우기
필터 지우기

How to make a forced exit from Matlab with returning a code?

조회 수: 10 (최근 30일)
Ralf
Ralf 2018년 10월 26일
댓글: Walter Roberson 2018년 10월 29일
Hi all, I try to exit from Matlab in a script and want to return a code to the command line. I know that there is the command
exit(code);
to do that. But in my case, some unsaved Simulink files prevent me from exiting. That's why I use
exit force;
to exit from Matlab without beeing asked to save the file first. But this command does not allow to pass a code to the command line. I tried something like
exit(code, 'force')
But that didn't work. Any other ideas?
Thanks a lot, Ralf

답변 (2개)

yusra Ch
yusra Ch 2018년 10월 26일
in the command window do this: ctrl+c and it will force the code to stop running
  댓글 수: 1
Ralf
Ralf 2018년 10월 29일
Sorry, I need to exit from a Matlab script. I am not sitting in front of the PC when this (batch of) scripts run.

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


madhan ravi
madhan ravi 2018년 10월 26일
편집: madhan ravi 2018년 10월 29일
exit %edited after sir Walter’s comment
  댓글 수: 7
Ralf
Ralf 2018년 10월 29일
Thank you, Walter. But is there a way to combine an exit code with the force statement?
Walter Roberson
Walter Roberson 2018년 10월 29일
It turns out that although the two are documented differently, they take the same options. However, only one option is permitted; it must be 'force' or 'cancel' or a scalar integer (negative values are permitted.) It is possible that there are additional undocumented options.

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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by