📄 3-4.m
字号:
%例程3-4 产生锯齿波形
Fs=1000;
t=0:1/Fs:3;
x=sawtooth(2*pi*t);
y=sawtooth(2*pi*t,0.5);
z=sawtooth(2*pi*t,1);
subplot(3,1,1);
plot(t,x);
subplot(3,1,2);
plot(t,y);
subplot(3,1,3);
plot(t,z);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -