Class ErfcStddevWeight
- java.lang.Object
-
- elki.math.linearalgebra.pca.weightfunctions.ErfcStddevWeight
-
- All Implemented Interfaces:
WeightFunction
public final class ErfcStddevWeight extends java.lang.Object implements WeightFunction
Gaussian Error Function Weight function, scaled using stddev using: \( \text{erfc}(\frac{1}{\sqrt{2}} \frac{\text{distance}}{\sigma}) \).This probably is the most statistically sound weight.
- Since:
- 0.2
- Author:
- Erich Schubert
-
-
Constructor Summary
Constructors Constructor Description ErfcStddevWeight()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetWeight(double distance, double max, double stddev)Return Erfc weight, scaled by standard deviation. max is ignored.
-
-
-
Method Detail
-
getWeight
public double getWeight(double distance, double max, double stddev)Return Erfc weight, scaled by standard deviation. max is ignored.- Specified by:
getWeightin interfaceWeightFunction- 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
-
-