<< ss2tf | Control System functions | ssdelete >> |
[A, B, C, D] = ssdata(sys) |
[A, B, C, D, Ts] = ssdata(sys) |
LTI model.
State matrix: Nx-by-Nx matrix.
Input-to-state matrix: Nx-by-Nu matrix.
State-to-output matrix: Ny-by-Nx matrix.
Feedthrough matrix: Ny-by-Nu matrix.
Sample time: scalar.
The function ssdata(sys) retrieves the matrix data A, B, C, D from the state-space model (LTI array) represented by sys.
If sys is initially in the form of a transfer function or zero-pole-gain model (LTI array), it is automatically converted to the state-space representation before extracting the matrix data.
sysIn = ss([1 0;0 -2], [-1;0], [2 1], 0, 3.2);
[a, b, c, d, Ts] = ssdata(sysIn)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET