wmtsa (version 2.0-3)

reconstruct: Reconstruction (inverse transform) of various wavelet transforms

Description

Inverts a discrete wavelet transform, mapping the data back into the time domain.

Usage

reconstruct(x, ...)

Arguments

x

an object of class wavTransform or wavMRD.

...

optional arguments passed directly to the reconstruction function.

Value

a numeric vector containing the result.

References

D. B. Percival and A. T. Walden, Wavelet Methods for Time Series Analysis, Cambridge University Press, 2000.

I. Daubechies, Orthonormal Bases of Compactly Supported Wavelets, Communications on Pure and, Applied Mathematics, 41, 909--96.

See Also

wavDWT, wavMODWT, wavMRD.

Examples

Run this code
# NOT RUN {
## create a random series, calculate a forward 
## transform, then invert 
x       <- rnorm(1024)
x.dwt   <- reconstruct(wavDWT(x))
x.modwt <- reconstruct(wavMODWT(x))
all(c(splus2R::vecnorm(x.dwt-x), splus2R::vecnorm(x.modwt-x)) < .Machine$single.eps)
# }

Run the code above in your browser using DataCamp Workspace