Plot please help / plot the domain of transfer function

1 Ansicht (letzte 30 Tage)
Melika Eft
Melika Eft am 26 Nov. 2020
Kommentiert: Paul am 27 Nov. 2020
How can I plot the transfer function of this function B(s)=5s^3+30s^2+55s+30/A(s)=s^3+9s^2+33s+65
  6 Kommentare
Melika Eft
Melika Eft am 27 Nov. 2020
Thank you very much indeed
Paul
Paul am 27 Nov. 2020
What do you mean by "the domain?" That's not a common term in this context.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Setsuna Yuuki.
Setsuna Yuuki. am 27 Nov. 2020
Bearbeitet: Setsuna Yuuki. am 27 Nov. 2020
You can try with tf():
fun = tf([5 30 55 30],[1 9 33 65]); % B(s)=5s^3+30s^2+55s+30/A(s)=s^3+9s^2+33s+65
step(fun)
fun =
5 s^3 + 30 s^2 + 55 s + 30
--------------------------
s^3 + 9 s^2 + 33 s + 65

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by