Learn R Programming

rwavelet (version 0.4.2)

SoftThresh: Apply Soft Threshold

Description

Apply Soft Threshold

Usage

SoftThresh(y, t)

Value

A numeric vector with entries

\(x_i = \mathrm{sign}(y_i)\max(|y_i| - t, 0)\).

Arguments

y

Noisy Data.

t

Threshold.

See Also

HardThresh

Examples

Run this code
f <- MakeSignal('HeaviSine', 2^3)
qmf <- MakeONFilter('Daubechies', 10)
L <- 0
wc <- FWT_PO(f, L, qmf)
thr <- 2
wct <- SoftThresh(wc, thr)
fsoft <- IWT_PO(wct, L, qmf)

Run the code above in your browser using DataLab