transfer function H(s) to H(w)
Show older comments
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 Comment
Paresh yeole
on 3 May 2020
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)
Answers (0)
Categories
Find more on Frequency-Domain Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!