Wavelet Toolbox Previous page   Next Page
lwt

1-D lifting wavelet transform

Syntax

Description

lwt performs a 1-D lifting wavelet decomposition with respect to a particular lifted wavelet that you specify.

[CA,CD] = lwt(X,W) computes the approximation coefficients vector CA and detail coefficients vector CD, obtained by a lifting wavelet decomposition, of the vector X. W is a lifted wavelet name (see liftwave).

X_InPlace = lwt(X,W) computes the approximation and detail coefficients. These coefficients are stored in place:

CA = X_InPlace(1:2:end) and CD = X_InPlace(2:2:end)

lwt(X,W,LEVEL) computes the lifting wavelet decomposition at level LEVEL.

X_InPlace = lwt(X,W,LEVEL,'typeDEC',typeDEC) or [CA,CD] = lwt(X,W,LEVEL,'typeDEC',typeDEC) with typeDEC = 'w' or 'wp' computes the wavelet or the wavelet packet decomposition using lifting, at level LEVEL.

Instead of a lifted wavelet name, you may use the associated lifting scheme LS: lwt(X,LS,...) instead of lwt(X,W,...).

For more information about lifting schemes, see lsinfo.

Examples

Algorithm

This function uses the polyphase algorithm.

lwt reduces to dwt with zero-padding extension mode and without extra-coefficients.

See Also
ilwt

References

Strang, G.; T. Nguyen (1996), Wavelets and filter banks, Wellesley-Cambridge Press.

Sweldens, W. (1998), "The Lifting Scheme: a Construction of Second Generation of Wavelets," SIAM J. Math. Anal., 29 (2), pp. 511-546.


Previous page  lsinfo lwt2 Next page

© 1994-2005 The MathWorks, Inc.