<< acker | Control System functions | augstate >> |
sys = append(sys1, sys2, ..., sysN) |
LTI models.
LTI model.
sys = append(sys1, sys2, ..., sysN) combines the inputs and outputs of models sys1 through sysN, creating an augmented model represented by sys.
sys1 = tf(1,[1 0]);
sys2 = tf([1 -1], [4 2]);
sys = append(sys1, 10, sys2)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET