vote up 2 vote down star

I'm working with the m-file editor of MATLAB and I need to jump from a line to another. As long as I need to jump from inside a "For...end", I can't use the usual "while" technique. Is there anyway to jump from a line to another, like "goto" in C?

Best Regards

flag

3 Answers

vote up 5 vote down

There is no goto in matlab. However, this does not say you cannot structure your code to use an {if, else, elseif, end} structural form for your code. Or use a {switch, case, end} form. Or call a function (or subfunction or nested function) to solve your problem. Or use a continue/break to structure your code. One can always solve these problems using one of the existing forms of flow control available.

The use of functions can improve your code in other ways, often by making it more modular, and therefore easier to debug and write.

link|flag
vote up 9 vote down

There is no goto statement in MATLAB, but there are a few other commands for use with loops that may help you:

  • CONTINUE: This statement will skip the remaining commands in a for or while loop and move on to the next iteration.
  • BREAK: This statement will terminate execution of a for or while loop.
link|flag
vote up 2 vote down

As far as I know, there is no goto statement in Matlab. But you can almost always avoid goto by restructuring your program.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.