Effacer les filtres
Effacer les filtres

How to feed the output of a user defined embedded function back into one of the inputs?

1 vue (au cours des 30 derniers jours)
Hi,
I would like to feed back one of the outputs of my user defined embedded function (Matlab Function block) back into one of the inputs (of the same function block) during the next iterative cycle.
May I know how can this be done? Thanks alot for helping!

Réponses (2)

Kaustubha Govind
Kaustubha Govind le 6 Mar 2012
Connecting an output back as an input will cause algebraic loops, so you may see errors or warnings from the Simulink solver when you do this. The best thing might be to maintain an internal state to save the previous output and use in the next time-step. For example:
function y = mytest(u)
%#codegen
persistent prev_y; %internal state
if isempty(prev_y)
prev_y = 0; %initial value
end
y = 2*u + prev_y;
prev_y = y;

Bassam Saleh
Bassam Saleh le 4 Sep 2015
using a memory block beyond the o/p signal and in-front of the i/p signal will solve this issue.

Catégories

En savoir plus sur Schedule Model Components 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!

Translated by