Wavelet Toolbox
  Go to function:
    Search    Help Desk 
meyer    Examples   See Also

Meyer wavelet.

Syntax

Description

[PHI,PSI,T] = meyer(LOWB,UPPB,N) returns Meyer wavelet and scaling functions evaluated on an N point regular grid on the interval [LOWB,UPPB].

N must be a power of two.

Output arguments are the scaling function PHI and the wavelet function PSI computed on the grid T. These functions have [-8 8] as effective support.

A fourth argument is allowed if only one function is required:
[PHI,T] = meyer(LOWB,UPPB,N,'phi')
[PSI,T] = meyer(LOWB,UPPB,N,'psi')

when the fourth argument is used but not equal to 'phi' or 'psi'. Outputs are the same as in the main option.

The Meyer wavelet and scaling function are defined in the frequency domain by:

where


By changing the auxiliary function (see meyeraux), you get a family of different wavelets. For the required properties of the auxiliary function , see References in Chapter 6.

Examples

Algorithm

Starting from an explicit form of the Fourier transform of , meyer computes the values of on a regular grid and then the values of are computed using instdfft, the inverse nonstandard discrete FFT.

The procedure for is along the same lines.

See Also

meyeraux, wavefun, waveinfo

References

I. Daubechies (1992), "Ten lectures on wavelets," CBMS-NSF conference series in applied mathematics. SIAM Ed. pp 117-119, 137, 152.



[ Previous | Help Desk | Next ]