zero
Zeros and gain of SISO dynamic system.
📝Syntax
Z = zero(sys)
[Z, gain] = zero(sys)
📥Input Arguments
Parameter Description
sys a LTI model.
📤Output Arguments
Parameter Description
Z Zeros of the dynamic system.
gain Zero-pole-gain of the dynamic system.
📄Description

[Z, gain] = zero(sys) returns the zero-pole-gain of sys.

💡Examples
sys = tf([4.2,0.25,-0.004],[1,9.6,17]);
[Z, gain] = zero(sys)
🔗See Also
pole
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub