<< d2c | Control System functions | dare >> |
[wn, zeta] = damp(sys) |
[wn, zeta, p, T] = damp(sys) |
LTI model.
Natural frequency of each pole: vector.
Damping ratio of each pole: vector.
Poles of the dynamic system model: vector.
Time Constant (seconds): vector.
The function damp(sys) provides the natural frequencies (wn) and damping ratios (zeta) associated with the poles of the system represented by sys.
sys = tf([2, 5, 1], [1, 0, 2, -6]);
[wn, zeta, p, T] = damp(sys)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET