This is the reference of the wavelets available wiith the pyrwt package. Please refer to the tutorial for further details, as the raw specifications may not be enough to give full guidelines on their uses.
A library of functions that create different kinds of wavelets.
Return the wavelet coefficients according to the wavelet name.
Parameters : | name : str
|
---|---|
Returns : | dec_lo : array
dec_hi : array
rec_lo : array
rec_hi : array
|
Examples
>>> from rwt.wavelets import waveletCoeffs
>>> dl, dh, rl, rh = waveletCoeffs("db1")
Note
The wavelet coefficients are taken from the PyWavelets - Discrete Wavelet Transform in Python pacakge, copyright (c) 2006-2010 Filip Wasilewski.
Return the list of supported wavelets.
Returns : | wavelet_list : list of strings
.. note:: :
|
---|
Computes the Daubechies’ scaling and wavelet filters (normalized to sqrt(2)).
Parameters : | N : int
TYPE : [‘min’, ‘max’, ‘mid’], optional (default=’min’)
|
---|---|
Returns : | h_0 : array-like, shape = [N]
h_1 : array-like, shape = [N]
|
Examples
>>> from rwt.wavelets import daubcqf
>>> h_0, h_1 = daubcqf(N=4, TYPE='min')
>>> print h_0, h_1
[[0.4830, 0.8365, 0.2241, -0.1294]] [[0.1294, 0.2241, -0.8365, 0.4830]]