tguh.reconstr {breakfast} | R Documentation |
This function performs the inverse Tail-Greedy Unbalanced Haar transformation, also referred to as reconstruction.
tguh.reconstr(tguh.decomp.obj)
tguh.decomp.obj |
A variable returned by |
The Tail-Greedy Unbalanced Haar decomposition and reconstruction algorithms are described in "Tail-greedy bottom-up data decompositions and fast multiple change-point detection", P. Fryzlewicz (2017), preprint.
A vector being the result of the inverse Tail-Greedy Unbalanced Haar transformation of tghu.decomp.obj
.
Piotr Fryzlewicz, p.fryzlewicz@lse.ac.uk
tguh.cpt
, tguh.decomp
, tguh.denoise
rnoise <- rnorm(10) rnoise.tguh <- tguh.decomp(rnoise) print(rnoise.tguh) rnoise.denoise <- tguh.denoise(rnoise.tguh, 3) rnoise.clean <- tguh.reconstr(rnoise.denoise) print(rnoise.clean)