在Matlab中将补丁添加到bodeplot的背景中

时间:2017-05-24 15:20:02

标签: matlab matlab-figure

我有一个小功能,我在其中创建一个波特图,就像这个:

function RequirementTest01
  % create a bode plot
  H = tf([1 0.1 7.5],[1 0.12 9 0 0]);
  %bode(H,{0.1,10});
  bodeHandle = bodeplot(H,{0.1,10});
  get(bodeHandle)
end

现在我有了一个多边形的坐标,我想创建一个应该插入到绘图背景中的补丁。如下图所示:

enter image description here

如何在图中插入补丁?

0 个答案:

没有答案