While loop stops before meeting conditions
Afficher commentaires plus anciens
Hi guys,
I am using a while loop with 3 conditions. Here it is :
while (X<90 && Y<90 && Z<90)
...
Or the program stop when I reach these values :
X = 87.55
Y = 87.58
Z = 93.21
Only one condition is true, so why the program stops ?
Thank you very much for your help !
3 commentaires
the cyclist
le 6 Avr 2020
Modifié(e) : the cyclist
le 6 Avr 2020
This code
X = 87.55;
Y = 87.58;
Z = 93.21;
while (X<90 && Y<90 && Z<90)
print('got here')
break
end
does not enter the while loop for me. (Does it for you?)
Can you post your actual code that exhibits the error, so we can try?
The only thing I can think of is that maybe you have both lower- and upper-case x,y,z, and you've somehow mixed them up.
Torsten
le 6 Avr 2020
As written, the program leaves the while loop if at least one condition is false - and this is the case for Z.
Thibaut
le 6 Avr 2020
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!