Azzera filtri
Azzera filtri

how can ı write opposite of while loop

1 visualizzazione (ultimi 30 giorni)
mts
mts il 18 Ago 2018
Commentato: Image Analyst il 19 Ago 2018
so i wanted to write loop but my loop need to be opposite of while loop,i mean you know when condition is true while loop keep doing loop and when condition is wrong, loop stop and continue to code. So my loop need to stop when condition is true and my loop need to continue to looping when my condition is wrong.

Risposte (1)

Chad Greene
Chad Greene il 18 Ago 2018
Just add a ~ to whatever statement you're using for the while loop. So instead of
while a==b
...
end
You could do
while ~(a==b)
...
end
  2 Commenti
Walter Roberson
Walter Roberson il 18 Ago 2018
It would not be uncommon to want to stop a loop as soon as it was detected that the condition was true. For that you could use
while true
.... some code ...
if condition_goes_here
break;
end
... more code ...
end
Image Analyst
Image Analyst il 19 Ago 2018
I'd add a failsafe of the max allowable iterations to be extra robust and prevent infinite loops:
maxIterations = 1000000; % Whatever you think will be way more than you would expect.
loopCounter = 1;
while loopCounter < maxIterations
.... some code ...
if condition_goes_here
break;
end
... more code ...
loopCounter = loopCounter + 1;
end

Accedi per commentare.

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by