InvDWT {grove} | R Documentation |
Inverse discrete wavelet transform
Description
This function performs the inverse discrete wavelet transform.
Usage
InvDWT(grove.obj, x = NULL, include.C = TRUE, sample.C = FALSE)
Arguments
grove.obj |
An object of class |
x |
A vector of the values of a predictor. |
include.C |
If |
sample.C |
If |
Value
A matrix with each row representing a draw from the reconstructed signal.
Examples
data <- wavethresh::DJ.EX(n = 512, noisy = TRUE, rsnr = 5)$doppler
W <- DWT(data)
ans <- Denoise(W)
denoised.data <- InvDWT(ans)
plot(data, type = "l")
lines(denoised.data[1, ], col = "red")
[Package grove version 1.1.1 Index]