public abstract class MultiscaleFunction
extends java.lang.Object
implements java.lang.Cloneable
Constructor and Description |
---|
MultiscaleFunction() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Return a copy of the object
|
abstract int |
dimension() |
abstract int |
dimension(int jfin) |
abstract boolean |
equals(java.lang.Object o)
Check if another object is equal to this
MultiscaleFunction object
|
abstract double[] |
evaluate(int j1)
Return as an array the sampled values
of the function
|
abstract int |
getFilterType()
This method is used to compute
how the number of scaling functions
changes from on scale to the other.
|
double |
mass(double a,
double b,
int jfin)
Compute the mass (integral)
|
double |
mass(int jfin)
Compute the mass (integral) of the interval 0,1
|
abstract java.lang.String |
toString()
Return a string representing the object
|
public abstract int dimension(int jfin)
public abstract int dimension()
public java.lang.Object clone()
clone
in class java.lang.Object
public abstract java.lang.String toString()
toString
in class java.lang.Object
public abstract double[] evaluate(int j1)
j
- number of iterationspublic double mass(double a, double b, int jfin)
a
- left boundary of the intervalb
- right boundary of the intervaljfin
- number of iterations to consider
(precision)public double mass(int jfin)
jfin
- number of iterations to consider
(precision)public abstract int getFilterType()
public abstract boolean equals(java.lang.Object o)
equals
in class java.lang.Object