Finding the poles in Transfer Function

How do you write
G=1/ s(s+2)(s+4)
in Matlab to check my answer?

 採用された回答

madhan ravi
madhan ravi 2020 年 9 月 28 日
編集済み: madhan ravi 2020 年 9 月 28 日

1 投票

s = tf('s');
G = 1 / (s * (s + 2) * (s + 4));
pole(G)

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by