Effacer les filtres
Effacer les filtres

how to skip from one line to another?

44 vues (au cours des 30 derniers jours)
bsd
bsd le 21 Mar 2012
Commenté : Travis Bemrose le 14 Mar 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 commentaire
Travis Bemrose
Travis Bemrose le 14 Mar 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.

Connectez-vous pour commenter.

Réponses (4)

Image Analyst
Image Analyst le 21 Mar 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 le 21 Mar 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 commentaire
Travis Bemrose
Travis Bemrose le 14 Mar 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.

Connectez-vous pour commenter.


Grzegorz Knor
Grzegorz Knor le 21 Mar 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 le 21 Mar 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.

Catégories

En savoir plus sur Entering Commands dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by