uh.bu | R Documentation |
Given an input vector of the form “signal + iid Gaussian noise”, the function estimates the noise level via Median Absolute Deviation, finds the best bottom-up Unbalanced Haar decomposition, thresholds it with the universal threshold, and performs the inverse Unbalanced Haar transform to yield an estimate of the signal.
uh.bu(x, stretch = length(x))
x |
a vector of the form “signal + iid Gaussian noise” |
stretch |
at each iteration, only the first |
an estimate of the signal
Piotr Fryzlewicz
P. Fryzlewicz (2007) “Unbalanced Haar technique for nonparametric function estimation”. Journal of the American Statistical Association, 102, 1318-1327.
uh
, best.unbal.haar.bu
, hard.thresh.bu
, reconstr.bu
x <- c(rep(0, 100), rep(1, 200)) + rnorm(300) est <- uh.bu(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.