public class MahalanobisDistanceMeasure extends Object implements DistanceMeasure
Parametered.ParameteredGeneralizationslog| Constructor and Description |
|---|
MahalanobisDistanceMeasure() |
| Modifier and Type | Method and Description |
|---|---|
void |
configure(org.apache.hadoop.conf.Configuration jobConf) |
void |
createParameters(String prefix,
org.apache.hadoop.conf.Configuration jobConf)
EXPERT: consumers should never have to call this method.
|
double |
distance(double centroidLengthSquare,
Vector centroid,
Vector v)
Optimized version of distance metric for sparse vectors.
|
double |
distance(Vector v) |
double |
distance(Vector v1,
Vector v2)
Returns the distance metric applied to the arguments
|
Matrix |
getInverseCovarianceMatrix() |
Vector |
getMeanVector() |
Collection<Parameter<?>> |
getParameters() |
void |
setCovarianceMatrix(Matrix m)
Computes the inverse covariance from the input covariance matrix given in input.
|
void |
setInverseCovarianceMatrix(Matrix inverseCovarianceMatrix) |
void |
setMeanVector(Vector meanVector) |
public void configure(org.apache.hadoop.conf.Configuration jobConf)
configure in interface Parameteredpublic Collection<Parameter<?>> getParameters()
getParameters in interface Parameteredpublic void createParameters(String prefix, org.apache.hadoop.conf.Configuration jobConf)
ParameteredParametered.ParameteredGeneralizations if java supported it. Calling this method should create a new list of
parameters and is calledcreateParameters in interface Parameteredprefix - ends with a dot if not empty.jobConf - configuration used for retrieving valuesinvoking method,
invoking methodpublic double distance(Vector v)
v - The vector to compute the distance topublic double distance(Vector v1, Vector v2)
DistanceMeasuredistance in interface DistanceMeasurev1 - a Vector defining a multidimensional point in some feature spacev2 - a Vector defining a multidimensional point in some feature spacepublic double distance(double centroidLengthSquare,
Vector centroid,
Vector v)
DistanceMeasuredistance in interface DistanceMeasurecentroidLengthSquare - Square of the length of centroidcentroid - Centroid vectorpublic void setInverseCovarianceMatrix(Matrix inverseCovarianceMatrix)
public void setCovarianceMatrix(Matrix m)
m - A covariance matrix.IllegalArgumentException - if eigen values equal to 0 found.public Matrix getInverseCovarianceMatrix()
public void setMeanVector(Vector meanVector)
public Vector getMeanVector()
Copyright © 2008–2017 The Apache Software Foundation. All rights reserved.