transfer function H(s) to H(w)
Ältere Kommentare anzeigen
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 Kommentar
Paresh yeole
am 3 Mai 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)
Antworten (0)
Kategorien
Mehr zu Frequency-Domain Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!