KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > maths > wavelet > daubechies5 > Scaling5


1
2 package JSci.maths.wavelet.daubechies5;
3
4 import JSci.maths.wavelet.*;
5 /******************************************
6 * Daubechies wavelets adapted to the
7 * interval by Meyer. Thanks to Pierre Vial
8 * for the filters.
9 * @author Daniel Lemire
10 *****************************************/

11 public final class Scaling5 extends MultiscaleFunction implements Cloneable JavaDoc {
12     private int n0;
13     private int k;
14     private static final Daubechies5 cdf=new Daubechies5();
15     public Scaling5 (int N0, int K) {
16         setParameters(N0,K);
17     }
18   /*****************************************
19   * Check if another object is equal to this
20   * Scaling5 object
21   ******************************************/

22   public boolean equals(Object JavaDoc a) {
23     if((a!=null) && (a instanceof Scaling5)) {
24       Scaling5 iv=(Scaling5)a;
25       return (this.dimension(0)==iv.dimension(0)) && (this.position()==iv.position());
26     }
27     return false;
28   }
29   /*******************************
30   * Return a String representation
31   * of the object
32   ********************************/

33   public String JavaDoc toString() {
34     String JavaDoc ans=new String JavaDoc("[n0=");
35     ans.concat(Integer.toString(n0));
36     ans.concat("][k=");
37     ans.concat(Integer.toString(k));
38     ans.concat("]");
39     return(ans);
40   }
41   
42     public Scaling5 () {
43     }
44     /****************************************
45   * This method is used to compute
46   * how the number of scaling functions
47   * changes from on scale to the other.
48   * Basically, if you have k scaling
49   * function and a filter of type t, you'll
50   * have 2*k+t scaling functions at the
51   * next scale (dyadic case).
52   * Notice that this method assumes
53   * that one is working with the dyadic
54   * grid while the method "previousDimension"
55   * define in the interface "filter" doesn't.
56     ******************************************/

57     public int getFilterType () {
58                 return(cdf.filtretype);
59     }
60   /**********************************************
61   * Set the parameters for this object
62   * @param N0 number of scaling function on the
63   * scale of this object
64   * @param K position or number of this object
65   * @exception IllegalScalingException if N0 is not
66   * large enough
67   ***********************************************/

68     public void setParameters(int N0, int K) {
69         if(N0<cdf.minlength) {
70             throw new IllegalScalingException(N0,cdf.minlength);
71         }
72         n0=N0;
73         k=K;
74     }
75   /********************************************
76   * Return a copy of this object
77   *********************************************/

78     public Object JavaDoc clone() {
79     Scaling5 s=(Scaling5) super.clone();
80     s.n0=n0;
81     s.k=k;
82     return(s);
83     }
84
85     /************************************************
86   * Return as an array the sampled values
87   * of the function
88   * @param j number of iterations
89     *************************************************/

90     public double[] evaluate ( int j) {
91         return(cdf.evalScaling (n0, k, j));
92     }
93   /****************************************************
94   * Starting with dimension() scaling functions and
95   * going jfin scales ahead (iterating jfin times),
96   * tells you how many scaling functions you'll have.
97   * @param jfin number of iterations
98   ******************************************************/

99     public int dimension(int jfin) {
100         return(Cascades.dimension(n0,jfin,cdf.filtretype));
101     }
102  /****************************************************
103   * Number of scaling functions at scale where this
104   * scaling function belongs.
105   *****************************************************/

106     public int dimension() {
107         return(dimension(0));
108     }
109   /****************************************
110   * Tells you what is the number of this
111   * scaling function. Scaling functions are
112   * numbered from left to right with the
113   * one at the left boundary being noted 0.
114   *****************************************/

115     public int position() {
116         return(k);
117     }
118 }
119
Popular Tags