augstate (Control Design and Simulation Module, MathScript Function)
Member of the ssdesign class.
Syntax
SysAugSS = augstate(SysInSS)
Description
Augments a space-state system model by appending states to the outputs of the model. The resulting model returns state values as outputs.
Inputs
Name | Description |
SysInSS | Specifies a linear time-invariant (LTI) model in state-space form. |
Outputs
Name | Description |
SysAugSS | Returns an LTI state-space model with states appended to the outputs. |
Examples
SysInSS = ss(-1, 1, 2, 0)SysAugSS = augstate(SysInSS)