Create or convert to descriptor state-space model.
Inputs
LTI model to be converted to state-space.
State matrix (n-by-n).
Input matrix (n-by-m).
Output matrix (p-by-n).
Feedthrough matrix (p-by-m).
Descriptor matrix (n-by-n).
Sampling time in seconds. If tsam is not specified, a continuous-time model is assumed.
Optional pairs of properties and values.
Type set (dss)
for more information.
Outputs
Descriptor state-space model.
Option Keys and Values
State-space matrices. See ’Inputs’ for details.
The name of the states in sys.
Cell vector containing strings for each state.
Default names are {'x1', 'x2', ...}
Logical. If set to true, no automatic scaling is used, e.g. for frequency response plots.
Sampling time. See ’Inputs’ for details.
The name of the input channels in sys.
Cell vector of length m containing strings.
Default names are {'u1', 'u2', ...}
The name of the output channels in sys.
Cell vector of length p containing strings.
Default names are {'y1', 'y2', ...}
Struct with input group names as field names and vectors of input indices as field values. Default is an empty struct.
Struct with output group names as field names and vectors of output indices as field values. Default is an empty struct.
String containing the name of the model.
String or cell of string containing comments.
Any data type.
Equations
. E x = A x + B u y = C x + D u
See also: ss, tf.
Package: control