01: package JSci.maths.wavelet;
02:
03: /*****************************
04: * Abstract class for using very fast, in-place,
05: * implementations of the Fast Wavelet Transform.
06: * See for example the FastDaubechies2 or
07: * FastSymmlet8 classes.
08: * @author Daniel Lemire
09: ********************************/
10: public abstract class FWT {
11: public abstract void transform(float[] v);
12:
13: public abstract void invTransform(float[] v);
14: }
|