matlab中读取ltiview最大超调量
时间: 2023-10-07 09:11:08 浏览: 152
MATLAB最大值
在MATLAB中,可以使用LTI Viewer来查看系统的响应和性能指标。要读取LTI Viewer中的最大超调量,可以按照以下步骤操作:
1. 设计或导入系统,例如:
```
sys = tf([1],[1 2 1]);
```
2. 打开LTI Viewer,例如:
```
ltiview(sys);
```
3. 在LTI Viewer中,选择“Step Response”作为显示类型,并勾选“Step Info”复选框,如下图所示:
![ltiview_step_response](https://user-images.githubusercontent.com/87290380/126040040-1e68eecd-8d1c-4a3a-ae99-1f2f2b5d9d2a.png)
4. 点击“Simulate”按钮,模拟系统响应。
5. 在LTI Viewer中,查看“Step Info”面板,可以看到超调量等性能指标,如下图所示:
![ltiview_step_info](https://user-images.githubusercontent.com/87290380/126040083-4d47c5f4-d2c7-4a7a-bc86-9c7b6a8fc8a9.png)
其中,Overshoot代表超调量,单位为百分比。
阅读全文