1 package JSci.maths.wavelet; 2 3 /***************************** 4 * Abstract class for using very fast, in-place, 5 * implementations of the Fast Wavelet Transform. 6 * See for example the FastDaubechies2 or 7 * FastSymmlet8 classes. 8 * @author Daniel Lemire 9 ********************************/ 10 public abstract class FWT { 11 public abstract void transform(float[] v); 12 public abstract void invTransform(float[] v); 13 } 14 15