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

112 次查看(过去 30 天)
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.

采纳的回答

Image Analyst
Image Analyst 2017-11-26
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.

更多回答(2 个)

Walter Roberson
Walter Roberson 2017-11-26
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 2021-10-27
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 个评论
Marc
Marc 2022-8-4
编辑:Marc 2022-8-4
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).

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Debugging and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by