滞回比较器 matlab
时间: 2023-10-19 12:12:56 浏览: 286
滞回比较器课程设计报告.doc
5星 · 资源好评率100%
Matlab中的滞回比较器可以使用`hysteresis`函数来实现。该函数的语法如下:
```matlab
output = hysteresis(input, threshold_high, threshold_low)
```
其中,`input`是输入信号,`threshold_high`是上阈值,`threshold_low`是下阈值。函数返回的`output`是根据输入信号和阈值进行滞回比较后得到的输出信号。
下面是一个简单的示例:
```matlab
% 定义输入信号
input = [0.5, 0.8, 1.2, 0.9, 0.4, 0.1, 0.3, 0.7];
% 定义阈值
threshold_high = 0.8;
阅读全文