How to initialize outpt of a matlab function block in simulink to zero

조회 수: 16 (최근 30일)
lady bird
lady bird 2019년 6월 19일
편집: Gert Kruger 2019년 6월 27일
Hello all;
I have designed a control system for a robot manipulator using simulink which includes several matlab function blocks.
My question how is it possible to initialize the input of the controller τ to zero at the start of the simulink simulation
Thank you in advance for your help
Regards

답변 (1개)

Gert Kruger
Gert Kruger 2019년 6월 19일
편집: Gert Kruger 2019년 6월 27일
You can add a persistent variable and check if it is empty. If it is empty, then it means it is the first time the Matlab function block is being executed, in which case you can set the output to be zero.
Example code:
function y = fcn(u)
persistent x
if isempty(x)
x = 1;
end
if (x==1)
y = 0; %y is 0 on the first simulation time step
else
y = 1; %y is 1 on for the rest
end
  댓글 수: 2
lady bird
lady bird 2019년 6월 20일
Thank you for your answer , i created this function just after the block that computes the τ, but it didn't initialize it to zero.
Gert Kruger
Gert Kruger 2019년 6월 27일
편집: Gert Kruger 2019년 6월 27일
lady bird,
perhaps you can upload your model if you are still having problems.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with Simulink에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by