How to run a code only up to a certain line?

180 views (last 30 days)
I'm in the process of editing an m-file that is pretty lengthy. Instead of running the whole thing, I'd like to run only the first several lines while I make some tweaks.
Is there are a MATLAB equivalent to "exit" in Stata: basically getting MATLAB to run the m-file only up to a specific line in the code?
Thanks in advance for your help.

Accepted Answer

Image Analyst
Image Analyst on 26 Nov 2017
Either set a breakpoint there (click on the - on the left margin) or put a return statement there.
return; % Exit script or return to calling routine.

More Answers (2)

Walter Roberson
Walter Roberson on 26 Nov 2017
If you know the line number, then at the command line you can
dbstop in FILENAME at LINENUMBER
But inside the editor it is easier just to click on the dash that shows up just to the right of the line number and before the code itself. A single click will turn it red, indicating that a breakpoint is there. If there is an anonymous function on the line then you might be asked whether the breakpoint is intended to be in it or on the line itself.
Once the code has started running and you are stopped at a breakpoint, a third way is available: the "Run and Advance" section changes to "Step In" and "Step Out" and "Run to Cursor". You can click on a line and then click on "Run to Cursor" and the program will execute until the line you had clicked on.
Setting a breakpoint is a bit more secure than "Run to Cursor" in that if anything interrupts the "Run to Cursor" (such as a breakpoint) then the editor will forget that temporary breakpoint was set -- but it will not forget breakpoints you set through clicking on the dash.

Stefanie Schwarz
Stefanie Schwarz on 27 Oct 2021
Starting in R2021b, with our improved editor, there is also a new "Run to here" feature to run the code until to a certain line and pause. See:
  1 Comment
Marc
Marc on 4 Aug 2022
Edited: Marc on 4 Aug 2022
It was nice in older versions that you could just add the word "break" into your code and it would stop there.... but that was removed and now there are much fancier features. Where do we find this information? I cannot find general editor features in the documentation (just explicit features).

Sign in to comment.

Categories

Find more on Debugging and Analysis 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!