augstate
Append state vector to output vector.
📝Syntax
sysa = augstate(sys)
[Aa, Ba, Ca, Da] = augstate(A, B, C, D)
📥Input Arguments
Parameter Description
sys LTI model.
📤Output Arguments
Parameter Description
sysa State-space model with states appended to the outputs.
📄Description

The function sysa = augstate(sys) adds the state vector to the outputs of a state-space model.

💡Examples
sys = ss(10, 10, 20, 0);
sysa = augstate(sys)
🔗See Also
feedbackseries
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub