In Simulink, when a condition is met, I want to keep a constant result even when this condition ends.
2 views (last 30 days)
Show older comments
In, Simulink; If the condition u1 > u2 is achieved, I want to keep sending the output of u1 > u2 even if u1 < u2.
In Code, like break.
0 Comments
Answers (1)
Muthukumar Ganesan
on 21 Aug 2022
Hi,
Please refer to the attachment.
Hope you are referring to this logic. Thanks
Static Temp=0;
if (u1>u2 && Temp !=1)
Temp = 1;
if (Temp == 1)
Out = u1>u2;
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!