JSci.maths.wavelet.daubechies3
Class Daubechies3

java.lang.Object
  extended by JSci.maths.wavelet.Multiresolution
      extended by JSci.maths.wavelet.daubechies3.Daubechies3
All Implemented Interfaces:
NumericalConstants, Filter

public final class Daubechies3
extends Multiresolution
implements Filter, NumericalConstants

Daubechies wavelets adapted to the interval by Meyer. Thanks to Pierre Vial for the filters.


Field Summary
protected static int filtretype
           
protected static int minlength
           
(package private) static double[] phv0
           
(package private) static double[] phv1
           
(package private) static double[] phvd0
           
(package private) static double[] phvd0temp
           
(package private) static double[] phvd1
           
(package private) static double[] phvd1temp
           
(package private) static double[] phvg
          On définit ici le filtre comme tel par le vecteur phvg (filtre passe-haut).
(package private) static double[] v0
           
(package private) static double[] v0temp
           
(package private) static double[] v1
           
(package private) static double[] v1temp
           
(package private) static double[] v2
           
(package private) static double[] v2temp
           
(package private) static double[] v3
           
(package private) static double[] v3temp
           
(package private) static double[] vd0
           
(package private) static double[] vd0temp
           
(package private) static double[] vd1
           
(package private) static double[] vd1temp
           
(package private) static double[] vd2
           
(package private) static double[] vd2temp
           
(package private) static double[] vd3
           
(package private) static double[] vd3temp
           
(package private) static double[] vg
           
(package private) static double[] vgtemp
           
 
Fields inherited from interface JSci.maths.NumericalConstants
GAMMA, GOLDEN_RATIO, LOG10, SQRT2, SQRT2PI, TWO_PI
 
Constructor Summary
Daubechies3()
           
 
Method Summary
 MultiscaleFunction dualScaling(int n0, int k)
           
 MultiscaleFunction dualWavelet(int n0, int k)
           
 double[] evalScaling(int n0, int k, int j1)
           
 double[] evalWavelet(int n0, int k, int j1)
           
 int getFilterType()
          This method is used to compute how the number of scaling functions changes from on scale to the other.
 double[] highpass(double[] gete)
          This is the implementation of the highpass Filter.
 double[] highpass(double[] v, double[] param)
          This is the implementation of the highpass Filter.
 double[] lowpass(double[] gete)
          This is the implementation of the lowpass Filter.
 double[] lowpass(double[] v, double[] param)
          This is the implementation of the lowpass Filter.
 int previousDimension(int k)
          This method return the number of "scaling" functions at the previous scale given a number of scaling functions.
 MultiscaleFunction primaryScaling(int n0, int k)
           
 MultiscaleFunction primaryWavelet(int n0, int k)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

filtretype

protected static final int filtretype
See Also:
Constant Field Values

minlength

protected static final int minlength
See Also:
Constant Field Values

vgtemp

static final double[] vgtemp

v0temp

static final double[] v0temp

v1temp

static final double[] v1temp

v2temp

static final double[] v2temp

v3temp

static final double[] v3temp

vd0temp

static final double[] vd0temp

vd1temp

static final double[] vd1temp

vd2temp

static final double[] vd2temp

vd3temp

static final double[] vd3temp

vg

static final double[] vg

vd0

static final double[] vd0

vd1

static final double[] vd1

vd2

static final double[] vd2

vd3

static final double[] vd3

v0

static final double[] v0

v1

static final double[] v1

v2

static final double[] v2

v3

static final double[] v3

phvg

static final double[] phvg
On définit ici le filtre comme tel par le vecteur phvg (filtre passe-haut).


phv0

static final double[] phv0

phv1

static final double[] phv1

phvd0temp

static final double[] phvd0temp

phvd0

static final double[] phvd0

phvd1temp

static final double[] phvd1temp

phvd1

static final double[] phvd1
Constructor Detail

Daubechies3

public Daubechies3()
Method Detail

getFilterType

public int getFilterType()
This method is used to compute how the number of scaling functions changes from on scale to the other. Basically, if you have k scaling function and a Filter of type t, you'll have 2*k+t scaling functions at the next scale (dyadic case). Notice that this method assumes that one is working with the dyadic grid while the method "previousDimension" define in the interface "Filter" doesn't.

Specified by:
getFilterType in class Multiresolution

primaryScaling

public MultiscaleFunction primaryScaling(int n0,
                                         int k)
Specified by:
primaryScaling in class Multiresolution

dualScaling

public MultiscaleFunction dualScaling(int n0,
                                      int k)
Specified by:
dualScaling in class Multiresolution

primaryWavelet

public MultiscaleFunction primaryWavelet(int n0,
                                         int k)
Specified by:
primaryWavelet in class Multiresolution

dualWavelet

public MultiscaleFunction dualWavelet(int n0,
                                      int k)
Specified by:
dualWavelet in class Multiresolution

previousDimension

public int previousDimension(int k)
This method return the number of "scaling" functions at the previous scale given a number of scaling functions. The answer is always smaller than the provided value (about half since this is a dyadic implementation). This relates to the same idea as the "Filter type". It is used by the interface "Filter".

Specified by:
previousDimension in interface Filter
Overrides:
previousDimension in class Multiresolution

lowpass

public double[] lowpass(double[] v,
                        double[] param)
This is the implementation of the lowpass Filter. It is used by the interface "Filter". Lowpass filters are normalized so that they preserve constants away from the boundaries.

Specified by:
lowpass in interface Filter
param - a parameter for the filter

highpass

public double[] highpass(double[] v,
                         double[] param)
This is the implementation of the highpass Filter. It is used by the interface "Filter". Highpass filters are normalized in order to get L2 orthonormality of the resulting wavelets (when it applies). See the class DiscreteHilbertSpace for an implementation of the L2 integration.

Specified by:
highpass in interface Filter
param - a parameter for the filter

lowpass

public double[] lowpass(double[] gete)
This is the implementation of the lowpass Filter. It is used by the interface "Filter". Lowpass filters are normalized so that they preserve constants away from the boundaries.

Specified by:
lowpass in interface Filter

highpass

public double[] highpass(double[] gete)
This is the implementation of the highpass Filter. It is used by the interface "Filter". Highpass filters are normalized in order to get L2 orthonormality of the resulting wavelets (when it applies). See the class DiscreteHilbertSpace for an implementation of the L2 integration.

Specified by:
highpass in interface Filter

evalScaling

public double[] evalScaling(int n0,
                            int k,
                            int j1)

evalWavelet

public double[] evalWavelet(int n0,
                            int k,
                            int j1)