<< padecoef | Control System functions | pole >> |
sys = parallel(sys1, sys2) |
sys = parallel(sys1, sys2) |
LTI models.
LTI model.
parallel function links two model objects in parallel.
It is versatile and can accept various types of models.
However, for successful connection, both systems must share the same nature, being either continuous or discrete, and must have identical sample times.
Static gains are treated as neutral and can be defined using regular matrices.
sys1 = tf([1 4], [8 2 1]);
sys2 = tf(1, [8 2 1]);
sys = parallel(sys2, sys2)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET