Modify the state variable in a Level-1 MATLAB S-Function

조회 수: 1 (최근 30일)
Lotfi
Lotfi 2019년 10월 1일
댓글: Daniel Sánchez Molina 2022년 7월 14일
Hi
I want to integrate the pulsation to obtain an angle but I must keep this angle between -pi to pi.
I use
function sys = mdlOutputs(t,x,u)
if(x>pi)
x=x-2*pi;
end
sys = x;
but the correction is only made once in the beginning of the simulation, then, x (the angle) is no longer put again to the range -pi to pi
Why is the solver not updating correctly x
Thanks

답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by