M 兼容如何实现带网格线的 bode 图?
技术分享
发布于 2025-07-22 14:55:36
查看 1过去315天
使用 bodeplot 函数。示例如下
1.运行下面代码:
H = tf([1, 0.1, 7.5], [1, 0.12, 9, 0, 0]);
bodeplot(H)
subplot(2,1,1)
grid on
subplot(2,1,2)
grid on
2.可以看到生成了带网格线的 bode 图:

所属专栏:工具箱
产品信息:M语言兼容工具
使用 bodeplot 函数。示例如下
1.运行下面代码:
H = tf([1, 0.1, 7.5], [1, 0.12, 9, 0, 0]);
bodeplot(H)
subplot(2,1,1)
grid on
subplot(2,1,2)
grid on
2.可以看到生成了带网格线的 bode 图:
