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

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

回答(2 个)

Kaustubha Govind
Kaustubha Govind 2012-3-6
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 2015-9-4
using a memory block beyond the o/p signal and in-front of the i/p signal will solve this issue.

类别

Help CenterFile Exchange 中查找有关 Schedule Model Components 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by