Package elki.distance
Interface WeightedNumberVectorDistance<V>
-
- Type Parameters:
V
- Vector type, usually NumberVector or above.
- All Superinterfaces:
Distance<V>
,NumberVectorDistance<V>
,PrimitiveDistance<V>
- All Known Implementing Classes:
WeightedCanberraDistance
,WeightedEuclideanDistance
,WeightedLPNormDistance
,WeightedManhattanDistance
,WeightedMaximumDistance
,WeightedPearsonCorrelationDistance
,WeightedSquaredEuclideanDistance
,WeightedSquaredPearsonCorrelationDistance
public interface WeightedNumberVectorDistance<V> extends NumberVectorDistance<V>
Distance functions where each dimension is assigned a weight.- Since:
- 0.7.0
- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static OptionID
WEIGHTS_ID
Parameter to set the weights of the weighted distance function.
-
Method Summary
-
Methods inherited from interface elki.distance.Distance
isMetric, isSquared, isSymmetric
-
Methods inherited from interface elki.distance.NumberVectorDistance
distance
-
Methods inherited from interface elki.distance.PrimitiveDistance
distance, getInputTypeRestriction, instantiate
-
-
-
-
Field Detail
-
WEIGHTS_ID
static final OptionID WEIGHTS_ID
Parameter to set the weights of the weighted distance function.
-
-