bode plot of simulink model using matab commands (codes)

2 ビュー (過去 30 日間)
Mahdi Zolfaghari
Mahdi Zolfaghari 2022 年 9 月 1 日
回答済み: Sam Chak 2022 年 9 月 1 日
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

回答 (1 件)

Sam Chak
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])
Gp = s + 3 ----------------- s^3 + 2 s^2 + 3 s Continuous-time transfer function.
bode(Gp)
margin(Gp) % if you want to display the stability margins

Community Treasure Hunt

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

Start Hunting!

Translated by