matlab矩形波
时间: 2023-07-13 09:22:48 浏览: 246
矩形波导MATLAB仿真
4星 · 用户满意度95%
Matlab可以通过函数square()生成矩形波信号。square()函数的使用方法如下:
```
square_wave = square(t, duty_cycle)
```
其中,t表示时间轴,duty_cycle表示占空比。例如,以下代码可以生成周期为1s,占空比为50%的矩形波信号:
```
t = 0:0.01:2;
square_wave = square(2*pi*t, 50);
plot(t, square_wave);
```
运行以上代码,就可以得到一个周期为1s,占空比为50%的矩形波信号的图像。
阅读全文