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 频域')
实验结果:
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 频域')
实验结果: