<< ind2rgb discrete_wavelet_analysis indwt2 >>

swt >> discrete_wavelet_analysis > indwt

indwt

Inverse nondecimated 1-D wavelet transform

Calling Sequence

C=indwt(W,type,[N])

Parameters

W:

ndwt structure

type :

type ('a' for low-pass components or 'd' for high-pass components)

N:

Level of decomposition

C:

reconstructed components at level N

Description

indwt performs a multilevel nondecimate reconstruction.

Examples

x=rand(1,100);
W1 = ndwt(x,3,'db1');
a0 = indwt(W1,'a',0);

//reconstruction error
err = max(abs(x(:)-a0(:)))

Authors

See also


Report an issue
<< ind2rgb discrete_wavelet_analysis indwt2 >>