While loop stops before meeting conditions
显示 更早的评论
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 个评论
the cyclist
2020-4-6
编辑:the cyclist
2020-4-6
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
2020-4-6
As written, the program leaves the while loop if at least one condition is false - and this is the case for Z.
Thibaut
2020-4-6
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!