up vote 6 down vote favorite
2
share [g+] share [fb]

Sometimes after calling a function (which takes some 30 odd minutes to finish), you realize that you did something wrong and want to stop the program.

How do you do that in MATLAB?

What I do is shutdown MATLAB completely and restart. I think there would be a way to abort the execution of the function instead.

Anybody know what that is?

link|improve this question

thanks @gnovice and @Derek. – Lazer Oct 1 '09 at 13:10
feedback

1 Answer

up vote 16 down vote accepted

Hitting Ctrl + C usually does the trick, although sometimes it has been known to run into snags.

link|improve this answer
5  
I've often found that adding a drawnow() call in a loop helps Matlab catch Ctrl+C. – mtrw Sep 30 '09 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.