Since most of the algorithms work for general biorthogonal wavelets it is straightforward to include further wavelet families.
To do so, one just has to feed the coefficients for the low and high pass filters and all other required operators in
struct Wavelets. By now, we provide member functions which read the coefficients
for the desired wavelets from the files MATLAB/Data/Icoeff.dat or MATLAB/Data/coeff.dat.
Example: The following program reads the filter coefficients for 4th order Interpolets and dumps them on the screen.
#include "Wavelet.hpp"
int debugRefine ;
int main() {
Wavelets WC("Interpolet",4) ;
WC.Print(1) ;
}