wavelet(wavelet="s8", mother=T, level=0, shift=0, dual=F, filter=NULL, filter.start=0) wavelet.packet(wavelet="s8", oscillation=0, level=0, shift=0, dual=F, filter=NULL, filter.start=0)
The available biorthogonal wavelets are:
Refer to Daubechies (1992) or the chapter "Wavelet Analysis of 1-D Signals" of the S+WAVELETS User's Manual.
Wavelet packet functions are a generalization of wavelet functions. Wavelet packet functions are still localized in time, but offer more flexibility than wavelets in representing different types of signals. In particular, wavelet packets are better at representing signals that exhibit oscillatory or periodic behavior.
See the printed help file for the general form of a wavelet packet function.
Refer to Wickerhauser (1994) or the chapter "Wavelet Packet Analysis" of the S+WAVELETS User's Manual for more details.
Wickerhauser, M. V. (1994). Adapted Wavelet Analysis -- from theory to software.
par(mfrow=c(2,2)) plot(wavelet("d4", mother=F)) plot(wavelet("s8", mother=T, level=3)) plot(wavelet("bs2.4", mother=T, dual=F, level=2)) plot(wavelet("vs2", mother=T, dual=F, level=1, shift=1))plot(wavelet.packet(wavelet="s8", oscillation=1, level=0)) plot(wavelet.packet("s8", oscillation=1, level=3)) plot(wavelet.packet(wavelet="s8", oscillation=3, level=0)) plot(wavelet.packet("s8", oscillation=4, level=3))