how to bode plot function.
1 次查看(过去 30 天)
显示 更早的评论
please help me bode plot this:
0 个评论
采纳的回答
rubindan
2020-5-24
Option 1:
s=tf('s');
G = 200*(s+0.4)*exp(-0.1*s)/s/s/(s+10)^2;
bode(G)
Option 2:
G = tf(200*[1 0.4],conv(conv([1 10],[1 10]),[1 0 0]) );
G.InputDelay=0.1;
bode(G)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!