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

Single-level inverse discrete 1-D wavelet transform (periodized).

Syntax

Description

idwtper is a one-dimensional wavelet analysis function.

X = idwtper(cA,cD,'wname') returns the single-level reconstructed approximation coefficients vector X based on approximation and detail vectors cA and cD at a given level, using the periodized inverse wavelet transform. 'wname' is a string containing the wavelet name (see wfilters).

Instead of giving the wavelet name, you can give the filters.

For X = idwtper(cA,cD,Lo_R,Hi_R):

Lo_R is the reconstruction low-pass filter.

Hi_R is the reconstruction high-pass filter.

If la = length(cA) = length(cD) then length(X) = 2*la.

For X = idwtper(cA,cD,'wname',L) or X = idwtper(cA,cD,Lo_R,Hi_R,L), L is the length of the result.

idwtper is the inverse function of dwtper in the sense that the abstract statement idwtper(dwtper(X,'wname'),'wname') gets back to X.

Examples

Note: In general, the following abstract statement is not true: idwtper(dwt(X,'wname'),'wname') = X .

See Also

dwtper

[ Previous | Help Desk | Next ]