public interface WaveletShrinkage
| Modifier and Type | Method and Description |
|---|---|
static void |
denoise(double[] t,
Wavelet wavelet)
Adaptive hard-thresholding denoising a time series with given wavelet.
|
static void |
denoise(double[] t,
Wavelet wavelet,
boolean soft)
Adaptive denoising a time series with given wavelet.
|
static void denoise(double[] t,
Wavelet wavelet)
t - the time series array. The size should be a power of 2. For time
series of size no power of 2, 0 padding can be applied.wavelet - the wavelet to transform the time series.static void denoise(double[] t,
Wavelet wavelet,
boolean soft)
t - the time series array. The size should be a power of 2. For time
series of size no power of 2, 0 padding can be applied.wavelet - the wavelet to transform the time series.soft - true if apply soft thresholding.