How can I jump from line 8 to line 2?

8 vues (au cours des 30 derniers jours)
Febin Benjamin
Febin Benjamin le 30 Juin 2014
Commenté : Febin Benjamin le 30 Juin 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.

Réponse acceptée

Mischa Kim
Mischa Kim le 30 Juin 2014
Modifié(e) : Mischa Kim le 30 Juin 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.
  1 commentaire
Febin Benjamin
Febin Benjamin le 30 Juin 2014
Thanx a lot Mischa! :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB Coder dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by