how to skip from one line to another?
28 views (last 30 days)
Show older comments
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 Comment
Travis Bemrose
on 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.
Answers (4)
Image Analyst
on 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.
0 Comments
Jan
on 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 Comment
Travis Bemrose
on 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.
Grzegorz Knor
on 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:
0 Comments
Daniel Shub
on 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.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!