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 中查找有关 Frequency-Domain Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!