sysa = augstate(sys)
[Aa, Ba, Ca, Da] = augstate(A, B, C, D)
| Parameter | Description |
|---|---|
| sys | LTI model. |
| Parameter | Description |
|---|---|
| sysa | State-space model with states appended to the outputs. |
The function sysa = augstate(sys) adds the state vector to the outputs of a state-space model.
sys = ss(10, 10, 20, 0);
sysa = augstate(sys)
| Version | Description |
|---|---|
| 1.0.0 | initial version |