reconstr {unbalhaar} | R Documentation |
Reconstructs a vector from its top-down Unbalanced Haar decomposition stored in an object returned
by best.unbal.haar
or hard.thresh
.
reconstr(buh)
buh |
an object of the type returned by |
the inverse Unbalanced Haar transform of buh
Piotr Fryzlewicz
best.unbal.haar
, hard.thresh
, reconstr.bu
x <- rnorm(1000)
x.uh <- best.unbal.haar(x)
x.uh.th <- hard.thresh(x.uh)
x.uh.th.r <- reconstr(x.uh.th)
ts.plot(x.uh.th.r)