📄 am3.asv
字号:
t=0:.01:20;
x=sawtooth(t,0.5);
subplot(2,2,1);
plot(t,x);
ylabel('幅度/v');
title('低频信号');
axis([0,20,-3,3])
A=2;
y=x+A;
subplot(2,2,2);
plot(t,y);
ylabel('幅度/v');
title('低频信号与直流叠加');
axis([0,10,-3,3])
t=0:.01:10;
x1=cos(4*pi*t);
subplot(2,2,3);
plot(t,x1);
ylabel('幅度/v');
title('高频信号')
axis([0,10,-3,3])
z=y.*x1;
subplot(2,2,4);
plot(t,z)
ylabel('幅度/v')
title('AM信号')
axis([0,10,-3,3])
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -