Why does Matlab not allow you to interupt a function mid execution?
Show older comments
This is more a question directed towards the mathworks staff.
Why does MATLAB not let you interupt execution to see the variable values/ variables in scope etc.
I am familiar with the pause.m function, however this needs to be called from the command line and can not be called from the GUI.
in MS Visual Studio you can pause from the IDE and then start again. This is an excellent feature of the IDE.
I see a related post on the web here: http://scrolls.mafgani.net/2007/03/matlab-interrupting-function-execution/
Are there any plans to include a button on the IDE to do this?
Answers (2)
Jason Ross
on 13 Feb 2013
Edited: Jason Ross
on 13 Feb 2013
0 votes
If you set a breakpoint in a function the debugger will stop there and you can inspect variables. You can also step in a variety of ways (step, step in, continue execution, etc).
The example provided in the blog post just seems to be encoding your own custom breakpoint mechanism that is available at runtime. It's not uncommon to use such constructs in a language to enable higher logging levels based on either a file (as in the example) or the setting of an environment variable. You can certainly do this in MATLAB jsut as you would any other programming language that can read the filesystem or check the value of environment variables. What you do when you hit that breakpoint is up to you -- continue execution, log a diagnostic message, output something to the screen, etc.
4 Comments
Image Analyst
on 13 Feb 2013
Edited: Image Analyst
on 13 Feb 2013
There is nothing in MATLAB, like control-break in Visual Studio. If your program is merrily crunching away in VS, with no breakpoints or anything, then when you type control-break, it will immediately stop what it's doing and position you in the code at the next line of code that it was going to execute (before you interrupted it). MATLAB does not have this capability, and requires more planning on when and where you hope to break at.
A related nice feature would be to be able to grab the arrow and move it to another line of code that you want to execute instead of the one it's pointing to, for example skip the next block of code or re-execute that function that you just got out of. Visual Basic has this - would be absolutely fantastic and a great help if MATLAB did too.
Matlab2010
on 13 Feb 2013
Jason Ross
on 13 Feb 2013
Thanks for the clarification -- the example provided seemed to be more intrusive than just setting a breakpoint and also required planning on where to put the code in place.
Jason Ross
on 13 Feb 2013
I see. I'd suggest you add in something that writes to a log that you can check to see how things are progressing without stopping execution.
(just to be clear -- although I am "MathWorks Staff", I'm writing this advice as "myself")
Sean de Wolski
on 13 Feb 2013
Edited: Sean de Wolski
on 13 Feb 2013
0 votes
You can use ctrl+c to stop some things but not all. See this solution:
5 Comments
Matlab2010
on 13 Feb 2013
Image Analyst
on 13 Feb 2013
You can print stuff out to the command line, say every 1000th iteration, or better yet, use a progress bar and a static text control on your GUI.
Jason Ross
on 13 Feb 2013
I'd really suggest you add some logging code so that you don't have to wonder. Logging can be very verbose (exporting the values, etc), or be very basic and say something like "I'm still alive", or report progress every n iterations.
Sean de Wolski
on 13 Feb 2013
Logging code or a waitbar with useful percentages and messages.
Matlab2010
on 13 Feb 2013
Categories
Find more on App Building in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!