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.

 Accepted Answer

bym
bym on 16 Aug 2011
Ctrl-c (control + c keys)

4 Comments

It doesn't work.
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.
thank very much!

Sign in to comment.

More Answers (1)

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

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Asked:

on 16 Aug 2011

Commented:

on 3 Apr 2023

Community Treasure Hunt

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

Start Hunting!