<< evalfr | Control System functions | freqresp >> |
sys = feedback(sys1, sys2) |
sys = feedback(sys1, sys2, sign) |
LTI models: Systems to connect in a feedback loop.
Type of feedback: -1 (default) or +1.
Closed-loop system.
sys = feedback(sys1, sys2) generates a model object, sys, representing the negative feedback interconnection of the model objects sys1 and sys2.
G = tf([2 5 1], [1 2 3]);
C = tf([5, 10], [1, 10]);
sys = feedback(G, C, +1)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET