Extract value from Looping until or when condition is true

7 次查看(过去 30 天)
Hi All,
I am trying to doing a loop with different values until condition met, I just do not wanna all the iteration to work, I wanna the iteration stops when or until condition is met, Also, I'd like to get out the values that met condition
So please help me
I fix the value of x and then obtain y ,
Again, I wanna the iteration stops when or until the condition is met
The following code works only to stop iteration but with no specifying which numbers from e could fit;
clear all;
yin2=[solve(-1>x+y,y), solve(x+y>20,y)];
e=(1:10);
for i=1:10
[a(i,:)]=matfunction(e(i));
z(i,:)=a(i,1);
s(i,:)=a(i,2);
if (-1<z(i,:)) && (s(i,:)>3);
break
display('ok')
z
else
display('bye bye')
end
end

回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-8-25
Is this?
i=1;
while ~(-1<z(i,:) && s(i,:)>3)
[a(i,:)]=matfunction(e(i));
z(i,:)=a(i,1);
s(i,:)=a(i,2);
i=i+1;
end
Please note this is partial code, add initial lines of the code.
The while loop is run until this condition "-1<z(i,:) && s(i,:)>3" is false, when it true, loop will terminate.
  1 个评论
Ali Tawfik
Ali Tawfik 2019-8-25
Hi Kalyan,
Thanks for your answer.
I got the following error, when I try to run with your feedback:
Reference to a cleared variable z.
Also, I think you misunderstand me, because, I wanna add while inside the for loop ?.
I mean, I wanna run the loop, until the condition is met then terminate, and then know which variables could met that condition
Hope you could help.
Thanks,

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by