transfer function H(s) to H(w)

H(s) = 100s^2(s+90)(s+1)^3 / 10s(s+3)(s^2+60s+400)
I need help on the calculations and graphs. How do it look like on magnitude and phase bode plot ?

1 件のコメント

Paresh yeole
Paresh yeole 2020 年 5 月 3 日
You can plot magnitude and phase bode plot using bode command in MATLAB.
s = tf('s');
H = ((100*s^2)*(s+90)*(s+1)^3) / (10*s*(s+3)*(s^2+60*s+400));
bode(H)

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeTime and Frequency Domain Analysis についてさらに検索

質問済み:

2020 年 5 月 3 日

コメント済み:

2020 年 5 月 3 日

Community Treasure Hunt

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

Start Hunting!

Translated by