how to skip from one line to another?

29 Ansichten (letzte 30 Tage)
bsd
bsd am 21 Mär. 2012
Kommentiert: Travis Bemrose am 14 Mär. 2020
Hai,
I have written a very long code, about 3000 lines, in matlab. For analysis purpose I need to go from line no. 240 to line no. 1401 directly. Is there any jump command to do this, apart from commenting (disabling) the other lines and also apart from using functions. For example in C program you have goto() command. Is there something similar to this in matlab? Looking forward for your reply.
BSD
  1 Kommentar
Travis Bemrose
Travis Bemrose am 14 Mär. 2020
Also looking for a solution. The only thing I'm aware of is highlighting the desired line and pressing F9, but this is sub-par because then you have to take over the function of the debugger by manually executing the rest of the lines.

Melden Sie sich an, um zu kommentieren.

Antworten (4)

Image Analyst
Image Analyst am 21 Mär. 2012
What would be even nicer is if MATLAB had "edit and continue" like Visual Basic .Net does. You can set a breakpoint, then when it stops there, you can edit the code and start executing the new code without rerunning the program from the beginning, OR (what is really nice), you can grab the arrow and drag it to a new line that you want to start executing, for example you can skip past that "if" statement that you should step into but don't want to. Very very handy. People who use Microsoft Visual Studio love it.

Jan
Jan am 21 Mär. 2012
No, there is no goto in Matlab and there are very good reasons not to implement it. Using functions is much more powerful and efficient.
  1 Kommentar
Travis Bemrose
Travis Bemrose am 14 Mär. 2020
You've missed the point. You're debugging/analyzing a function, and you need to skip over a line or two to see the rest of it run without executing the line the debugger is halted at and without commenting out those lines and saving the file which would stop the debugger.

Melden Sie sich an, um zu kommentieren.


Grzegorz Knor
Grzegorz Knor am 21 Mär. 2012
I recommend to use if statement for this purpose:
x = 1:10;
y = x.^2;
if 0
y = sqrt(y);
end
plot(x,y)
See also:

Daniel Shub
Daniel Shub am 21 Mär. 2012
But please do not. Just bite the bullet and spend a little bit of time learning how to write functions. It is going to make your life so much easier.

Kategorien

Mehr zu Entering Commands finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by