IFWT_TI: Inverse Forward Wavelet Transform (translation invariant).

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/functionINIT.R

Description

Compute the Inverse Forward Wavelet Transform of a signal $f$ for the Meyer wavelet (translation invariant).

Usage

1
IFWT_TI(f_fft, psyJ_fft, lev, thr, nn, SOFT = FALSE)

Arguments

f_fft

vector of the Fourier coefficient of $f$

psyJ_fft

vector of the Fourier coefficient of the Meyer wavelet.

lev

resolution level

thr

threshold (has lentgh=1)

nn

sample size

SOFT

if SOFT=TRUE, uses the soft thresholding policy as opposed to the hard (SOFT=FALSE, the default).

Value

Inverse Forward Wavelet Transform of a signal $f$, after thresholding.

Author(s)

Marc Raimondo

References

Raimondo, M. and Stewart, M. (2007), "The WaveD Transform in R", Journal of Statistical Software.

See Also

WaveD, ~~~

Examples

1
2
3
psyJ_fft=wavelet_YM(4,10,3);
f_fft=fft(sin(2*pi*seq(0,1,le=1024)));
IFWT_TI(f_fft, psyJ_fft, 4, 0, 1024)

waved documentation built on May 2, 2019, 3:21 a.m.

Related to IFWT_TI in waved...