在Matlab中设置零极点图线条的宽度
时间: 2023-05-25 22:06:37 浏览: 188
零极点模型的获得-automotive software engineering principles processes
你可以使用plot函数中的LineWidth参数设置零极点图线条的宽度。例如:
```matlab
s = tf('s');
H = (s + 3)/(s^2 + 2*s + 1);
pzmap(H,'r','LineWidth',2);
```
这里将零极点图的线条颜色设置为红色('r'),线条宽度设置为2。
阅读全文