📄 harmwavelet.m
字号:
t=-6:0.01:6;
we=2*sinc(4*t)-sinc(2*t);
wo=4*pi*t.*[sinc(2*t)].^2-pi*t.*[sinc(t)].^2;
w=we+i*wo;
%figure(1);
subplot(121);
plot(t,real(w));
Xlabel('t/s');
Ylabel('Re(w(t))');
%figure(2);
subplot(122);
plot(t,imag(w));
Xlabel('t/s');
Ylabel('Im(w(t))');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -