append
Appends the inputs and outputs of the two models.
📝Syntax
sys = append(sys1, sys2, ..., sysN)
📥Input Arguments
Parameter Description
sys1, sys2, ..., sysN LTI models.
📤Output Arguments
Parameter Description
sys LTI model.
📄Description

sys = append(sys1, sys2, ..., sysN) combines the inputs and outputs of models sys1 through sysN, creating an augmented model represented by sys.

💡Examples
sys1 = tf(1,[1 0]);
sys2 = tf([1 -1], [4 2]);
sys = append(sys1, 10, sys2)
🔗See Also
feedbackseries
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub