How can I jump from line 8 to line 2?

7 visualizaciones (últimos 30 días)
Febin Benjamin
Febin Benjamin el 30 de Jun. de 2014
Comentada: Febin Benjamin el 30 de Jun. de 2014
As there is no native 'goto' function in matlab plus the function provided in file exchange is not working, I am stuck here. I dont know how to jump from line 8 to line 2. That jump is required for my program to continue. Please Help.

Respuesta aceptada

Mischa Kim
Mischa Kim el 30 de Jun. de 2014
Editada: Mischa Kim el 30 de Jun. de 2014
Hello Febin, you could use something like:
exitFLAG = 0;
while ~exitFLAG
...
if
...
exitFLAG = 1;
else
exitFLAG = 0;
end
end
The loop is executed until the if-condition is true and the exitFLAG is set to 1.

Más respuestas (0)

Categorías

Más información sobre MATLAB Coder en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by