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
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 Exchange で Time and Frequency Domain Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!