📄 sigadd.m
字号:
%信号的相加和相乘
t=linspace(-7,7);
omg=1;
f1=sin(omg*t);
f2=sin(12*omg*t);
f3=f1+f2;
f4=f1.*f2;
figure(1);
subplot(3,2,1);
plot(t,f1);
subplot(3,2,3);
plot(t,f2);
subplot(3,2,5);
plot(t,f3);
xlabel('信号相加');
subplot(3,2,2);
plot(t,f1);
subplot(3,2,4);
plot(t,f2);
subplot(3,2,6);
plot(t,f4);
xlabel('信号相乘');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -