Wavelet Toolbox |
Syntax
Description
LS = liftwave(WNAME) returns the lifting scheme associated with the wavelet specified by WNAME. LS
is a structure, not an integer, and used by lwt
, ilwt
, lwt2
, etc.
LS = liftwave(WNAME,'Int2Int') performs an integer to integer wavelet transform. Using 'Int2Int' produces an LS
such that when you use [CA,CD] = lwt(X,LS)
or Y = lwt(X,LS)
and X
is a vector of integers, the resulting CA
, CD
, and Y
are vectors of integers. If you omit 'Int2Int'
then lwt
produces vectors of real numbers.
The valid values for WNAME are
For more information about lifting schemes, see lsinfo
.
Examples
% Start from the db2 wavelet and get the % corresponding lifting scheme. lsdb2 = liftwave('db2'); % Visualize the obtained lifting scheme. displs(lsdb2); lsdb2 = {... 'd' [ -1.73205081] [0] 'p' [ -0.06698730 0.43301270] [1] 'd' [ 1.00000000] [-1] [ 1.93185165] [ 0.51763809] [] };
See Also
laurpoly
liftfilt | ls2filt |
© 1994-2005 The MathWorks, Inc.