How to stop a script from executing

This is a basic question but I am wondering how you can halt a script from executing mid script.

 采纳的回答

bym
bym 2011-8-16
Ctrl-c (control + c keys)

4 个评论

It does generally work, but it does not take effect until the next time that MATLAB gets control. The symbolic computation engine is not under MATLAB's control for this purpose; and execution of heavy computation in the high performance math libraries is not under MATLAB's control for this purpose. Also, mex files and DLL are not under MATLAB's control for this purpose.
Make sure you click on the command window then press Ctrl + c.

请先登录,再进行评论。

更多回答(1 个)

%code
error('Mid script reached, this error message was made on purpose')
%code
Another alternative could be the use of the return function

类别

帮助中心File Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by