complex morlet wavelet
[PSI,X]= cmorwavf(LB,UB,N,FB,FC)
low bound
upper bound
number of data points
positive bandwidth parameter
wavelet center frequency
wavelet
time grid
cmorwavf is an utility to get complex morlet wavelet waveform.
[PSI,X]=cmorwavf(-8,8,1000,1.5,1); // Plot complex Morlet wavelet. subplot(211) plot(X,real(PSI)), title('Complex Morlet wavelet cmor1.5-1') xlabel('Real part'), xgrid() subplot(212) plot(X,imag(PSI)) xlabel('Imaginary part'), xgrid()