how to bode plot function.
1 回表示 (過去 30 日間)
古いコメントを表示
please help me bode plot this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/299073/image.png)
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)
1 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!