作者:小茜的阳光2011_950 | 来源:互联网 | 2023-05-19 01:23
d-6;h6;n100;[g1,x]morlet(d,h,n);subplot(2,2,1);plot(x,g1,-r,LineWidth,1.5);xlabel(
d=-6;
h=6;
n=100;
[g1,x]=morlet(d,h,n);
subplot(2,2,1);
plot(x,g1,'-r','LineWidth',1.5);
xlabel('t')
title('Morlet 时域')
g2=fft(g1);
g3=abs(g2);
subplot(2,2,2);
plot(g3);
xlabel('f')
title('Morlet 频域')
实验结果: