rwavelet (version 0.4.0)

IWT_PO: Inverse Wavelet Transform (periodized, orthogonal).

Description

Suppose wc <- FWT_PO(x,L,qmf) where qmf is an orthonormal quad. mirror filter, e.g. one made byMakeONFilter. Then x can be reconstructed by x <- IWT_PO(wc,L,qmf).

Usage

IWT_PO(wc, L, qmf)

Arguments

wc

1-d wavelet transform: length(wc) = 2^J.

L

Coarsest scale (2^(-L) = scale of V_0); L << J.

qmf

quadrature mirror filter (orthonormal).

Value

x 1-d signal reconstructed from wc.

See Also

FWT_PO, MakeONFilter.

Examples

Run this code
# NOT RUN {
x <- MakeSignal('Ramp', 8)
L <- 0
qmf <- MakeONFilter('Haar')
wc <- FWT_PO(x, L, qmf)
xr <- IWT_PO(wc,L,qmf)
# }

Run the code above in your browser using DataLab