How to initialize outpt of a matlab function block in simulink to zero
19 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello all;
I have designed a control system for a robot manipulator using simulink which includes several matlab function blocks.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/225505/image.png)
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
0 commentaires
Réponses (1)
Gert Kruger
le 19 Juin 2019
Modifié(e) : Gert Kruger
le 27 Juin 2019
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 commentaires
Gert Kruger
le 27 Juin 2019
Modifié(e) : Gert Kruger
le 27 Juin 2019
lady bird,
perhaps you can upload your model if you are still having problems.
Voir également
Catégories
En savoir plus sur General Applications dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!