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

Single-level discrete 1-D wavelet transform.

Syntax

Description

The dwt command performs a single-level one-dimensional wavelet decomposition with respect to either a particular wavelet ('wname', see wfilters) or particular wavelet decomposition filters (Lo_D and Hi_D) you specify.

[cA,cD] = dwt(X,'wname') computes the approximation coefficients vector cA and detail coefficients vector cD, obtained by wavelet decomposition of the vector X.

[cA,cD] = dwt(X,Lo_D,Hi_D) computes the wavelet decomposition as above, given these filters as input:

Lo_D and Hi_D must be the same length.

If lx is the length of X and lf is the length of the filters Lo_D and Hi_D, then
length(cA) = length(cD) = floor((lx+lf-1)/2).

For the different signal extension modes, see dwtmode.

Examples

Algorithm

Starting from a signal s, two sets of coefficients are computed: approximation coefficients CA1 and detail coefficients CD1. These vectors are obtained by convolving s with the low-pass filter Lo_D for approximation, and with the high-pass filter Hi_D for detail, followed by dyadic decimation.

More precisely, the first step is:


The length of each filter is equal to 2N. If n = length(s), the signals F and G are of length n + 2N - 1 and then the coefficients CA1 and CD1 are of length

.

Note: In order to deal with signal-end effects involved by convolution based algorithm, a global variable managed by dwtmode is used. The possible options are: zero-padding (used in the previous example, this mode is the default), symmetric extension, and smooth extension. It should be noted that dwt has the same single inverse function idwt for the three extension modes.

Limitations

Periodized wavelet transform is handled separately (see dwtper and idwtper).

See Also

dwtmode, dwtper, idwt, wavedec, waveinfo

References

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

S. Mallat (1989), "A theory for multiresolution signal decomposition: the wavelet representation," IEEE Pattern Anal. and Machine Intell., vol. 11, no. 7, pp 674-693.

Y. Meyer (1990), "Ondelettes et opérateurs," Tome 1, Hermann Ed. (English translation: Wavelets and operators, Cambridge Univ. Press. 1993.)



[ Previous | Help Desk | Next ]