bode plot of simulink model using matab commands (codes)
2 ビュー (過去 30 日間)
古いコメントを表示
Hi there,
I have modeled a transfer function in Simulink. How can I get the bode plot of the model using Matlab code? I don't want to use the model linearizer in the apps.
Thanks
0 件のコメント
回答 (1 件)
Sam Chak
2022 年 9 月 1 日
This is an example to get the Bode plot with MATLAB code:
Gp = tf([1 3], [1 2 3 0])
bode(Gp)
margin(Gp) % if you want to display the stability margins
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!