de.lmu.ifi.dbs.elki.math.linearalgebra.pca.weightfunctions
Class QuadraticWeight
java.lang.Object
de.lmu.ifi.dbs.elki.math.linearalgebra.pca.weightfunctions.QuadraticWeight
- All Implemented Interfaces:
- WeightFunction
public final class QuadraticWeight
- extends Object
- implements WeightFunction
Quadratic weight function, scaled using the maximum to reach 0.1 at that
point.
1.0 - 0.9 * (distance/max)^2
- Author:
- Erich Schubert
|
Method Summary |
double |
getWeight(double distance,
double max,
double stddev)
Evaluate quadratic weight. stddev is ignored. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
QuadraticWeight
public QuadraticWeight()
getWeight
public double getWeight(double distance,
double max,
double stddev)
- Evaluate quadratic weight. stddev is ignored.
- Specified by:
getWeight in interface WeightFunction
- Parameters:
distance - distance of the query pointmax - maximum distance of all included pointsstddev - standard deviation (i.e. quadratic mean / RMS) of the
included points
- Returns:
- weight for the query point