ITWT2_PO: Inverse 2-d Tensor Wavelet Transform (periodized, orthogonal)

View source: R/ITWT2_PO.R

ITWT2_POR Documentation

Inverse 2-d Tensor Wavelet Transform (periodized, orthogonal)

Description

If wc is the result of a forward 2d wavelet transform, with wc <- FTWT2_PO(x,L,qmf), then x <- ITWT2_PO(wc,L,qmf) reconstructs x exactly. qmf is a nice qmf, e.g. one made by MakeONFilter.

Usage

ITWT2_PO(wc, L, qmf)

Arguments

wc

2-d wavelet transform (n by n array, n dyadic).

L

coarse level.

qmf

quadrature mirror filter.

Value

x 2-d signal reconstructed from wc.

See Also

FTWT2_PO, MakeONFilter.

Examples

qmf <- MakeONFilter('Daubechies', 10)
L <- 0
x <- matrix(rnorm(2^2), ncol=2)
wc <- FTWT2_PO(x, L, qmf)
xr <- ITWT2_PO(wc,L,qmf)

fabnavarro/rwavelet documentation built on Nov. 5, 2023, 1:01 p.m.