While loop stops before meeting conditions
Mostrar comentarios más antiguos
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 comentarios
the cyclist
el 6 de Abr. de 2020
Editada: the cyclist
el 6 de Abr. de 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
el 6 de Abr. de 2020
As written, the program leaves the while loop if at least one condition is false - and this is the case for Z.
Thibaut
el 6 de Abr. de 2020
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!