damp
Natural frequency and damping ratio.
📝Syntax
[wn, zeta] = damp(sys)
[wn, zeta, p, T] = damp(sys)
📥Input Arguments
Parameter Description
sys LTI model.
📤Output Arguments
Parameter Description
wn Natural frequency of each pole: vector.
zeta Damping ratio of each pole: vector.
p Poles of the dynamic system model: vector.
T Time Constant (seconds): vector.
📄Description

The function damp(sys) provides the natural frequencies (wn) and damping ratios (zeta) associated with the poles of the system represented by sys.

💡Examples
sys = tf([2, 5, 1], [1, 0, 2, -6]);
[wn, zeta, p, T] = damp(sys)
🔗See Also
esortpole
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub