<< tfdata | Control System functions | zero >> |
z = tzero(sys) |
z = tzero(A, B, C, D) |
z = tzero(A, B, C, D, E) |
[z, nrank] = tzero(sys) |
[z, nrank] = tzero(A, B, C, D) |
[z, nrank] = tzero(A, B, C, D, E) |
a 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.
Nx-by-Nx matrix.
Invariant zeros: column vector.
Normal rank: positive integer.
tzero function is employed to extract the invariant zeros of a Multiple Input, Multiple Output (MIMO) dynamic system described by the system model sys.
In cases where sys is a minimal realization, these invariant zeros coincide with the transmission zeros of the system.
A = [1 2; 3 4];
B = [1; 0];
C = [1 0];
D = 0;
sys = ss(A, B, C, D);
z = tzero(sys)
[z, nrank] = tzero(sys)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET