In Simulink, when a condition is met, I want to keep a constant result even when this condition ends.

4 次查看(过去 30 天)
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.

回答(1 个)

Muthukumar Ganesan
Muthukumar Ganesan 2022-8-21
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;

类别

Help CenterFile Exchange 中查找有关 Simulink Environment Customization 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by