cmorwavf
Purpose
Complex Morlet wavelet
Syntax
[PSI,X] = cmorwavf(LB,UB,N,FB,FC)
Description
[PSI,X] = cmorwavf(LB,UB,N,FB,FC) returns values of the complex Morlet wavelet defined by a positive bandwidth parameter FB, a wavelet center frequency FC, and the expression
on an N point regular grid for the interval [LB,UB].
Output arguments are the wavelet function PSI computed on the grid X.
Examples
% Set bandwidth and center frequency parameters.
fb = 1.5; fc = 1;
% Set effective support and grid parameters.
lb = -8; ub = 8; n = 1000;
% Compute complex Morlet wavelet cmor1.5-1.
[psi,x] = cmorwavf(lb,ub,n,fb,fc);
% Plot complex Morlet wavelet.
subplot(211)
plot(x,real(psi)),
title('Complex Morlet wavelet cmor1.5-1')
xlabel('Real part'), grid
subplot(212)
plot(x,imag(psi))
xlabel('Imaginary part'), grid

See Also
waveinfo
References
Teolis, A. (1998), Computational signal processing with wavelets, Birkhauser, p. 65.
| | Provide feedback about this page |
 | chgwdeccfs | | coifwavf |  |
Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
Get the Interactive Kit