Z = zero(sys)
[Z, gain] = zero(sys)
| Parameter | Description |
|---|---|
| sys | a LTI model. |
| Parameter | Description |
|---|---|
| Z | Zeros of the dynamic system. |
| gain | Zero-pole-gain of the dynamic system. |
[Z, gain] = zero(sys) returns the zero-pole-gain of sys.
sys = tf([4.2,0.25,-0.004],[1,9.6,17]);
[Z, gain] = zero(sys)
| Version | Description |
|---|---|
| 1.0.0 | initial version |