Plot please help / plot the domain of transfer function
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Setsuna Yuuki.
2020-11-27
编辑:Setsuna Yuuki.
2020-11-27
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
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!