[wn, zeta] = damp(sys)
[wn, zeta, p, T] = damp(sys)
| Parameter | Description |
|---|---|
| sys | LTI model. |
| 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. |
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 |