Package elki.distance.minkowski
Class ManhattanDistance
- java.lang.Object
-
- elki.distance.minkowski.LPNormDistance
-
- elki.distance.minkowski.LPIntegerNormDistance
-
- elki.distance.minkowski.ManhattanDistance
-
- All Implemented Interfaces:
Distance<NumberVector>
,Norm<NumberVector>
,NumberVectorDistance<NumberVector>
,PrimitiveDistance<NumberVector>
,SpatialPrimitiveDistance<NumberVector>
@Alias({"taxicab","cityblock","l1"}) public class ManhattanDistance extends LPIntegerNormDistance
Manhattan distance forNumberVector
s.Manhattan distance is defined as: \[ \text{Manhattan}(\vec{x},\vec{y}) := \sum_i |x_i-y_i| \]
- Since:
- 0.1
- Author:
- Arthur Zimek
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ManhattanDistance.Par
Parameterization class.
-
Field Summary
Fields Modifier and Type Field Description static ManhattanDistance
STATIC
The static instance to use.-
Fields inherited from class elki.distance.minkowski.LPIntegerNormDistance
intp
-
Fields inherited from class elki.distance.minkowski.LPNormDistance
invp, p
-
-
Constructor Summary
Constructors Constructor Description ManhattanDistance()
Deprecated.Use static instance!
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
distance(NumberVector v1, NumberVector v2)
Computes the distance between two given DatabaseObjects according to this distance function.boolean
equals(java.lang.Object obj)
int
hashCode()
boolean
isMetric()
Is this distance function metric (satisfy the triangle inequality)double
minDist(SpatialComparable mbr1, SpatialComparable mbr2)
Computes the distance between the two given MBRs according to this distance function.double
norm(NumberVector v)
Compute the norm of object obj.private double
preDistance(NumberVector v1, NumberVector v2, int start, int end)
private double
preDistanceMBR(SpatialComparable mbr1, SpatialComparable mbr2, int start, int end)
private double
preDistanceVM(NumberVector v, SpatialComparable mbr, int start, int end)
private double
preNorm(NumberVector v, int start, int end)
private double
preNormMBR(SpatialComparable mbr, int start, int end)
java.lang.String
toString()
-
Methods inherited from class elki.distance.minkowski.LPNormDistance
getInputTypeRestriction, getInvP, getP
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface elki.distance.Distance
isSquared, isSymmetric
-
Methods inherited from interface elki.distance.SpatialPrimitiveDistance
instantiate
-
-
-
-
Field Detail
-
STATIC
public static final ManhattanDistance STATIC
The static instance to use.
-
-
Constructor Detail
-
ManhattanDistance
@Deprecated public ManhattanDistance()
Deprecated.Use static instance!Constructor - useSTATIC
instead.
-
-
Method Detail
-
preDistance
private double preDistance(NumberVector v1, NumberVector v2, int start, int end)
-
preDistanceVM
private double preDistanceVM(NumberVector v, SpatialComparable mbr, int start, int end)
-
preDistanceMBR
private double preDistanceMBR(SpatialComparable mbr1, SpatialComparable mbr2, int start, int end)
-
preNorm
private double preNorm(NumberVector v, int start, int end)
-
preNormMBR
private double preNormMBR(SpatialComparable mbr, int start, int end)
-
distance
public double distance(NumberVector v1, NumberVector v2)
Description copied from interface:PrimitiveDistance
Computes the distance between two given DatabaseObjects according to this distance function.- Specified by:
distance
in interfaceNumberVectorDistance<NumberVector>
- Specified by:
distance
in interfacePrimitiveDistance<NumberVector>
- Overrides:
distance
in classLPIntegerNormDistance
- Parameters:
v1
- first DatabaseObjectv2
- second DatabaseObject- Returns:
- the distance between two given DatabaseObjects according to this distance function
-
norm
public double norm(NumberVector v)
Description copied from interface:Norm
Compute the norm of object obj.- Specified by:
norm
in interfaceNorm<NumberVector>
- Overrides:
norm
in classLPIntegerNormDistance
- Parameters:
v
- Object- Returns:
- Norm
-
minDist
public double minDist(SpatialComparable mbr1, SpatialComparable mbr2)
Description copied from interface:SpatialPrimitiveDistance
Computes the distance between the two given MBRs according to this distance function.- Specified by:
minDist
in interfaceSpatialPrimitiveDistance<NumberVector>
- Overrides:
minDist
in classLPIntegerNormDistance
- Parameters:
mbr1
- the first MBR objectmbr2
- the second MBR object- Returns:
- the distance between the two given MBRs according to this distance function
-
isMetric
public boolean isMetric()
Description copied from interface:Distance
Is this distance function metric (satisfy the triangle inequality)- Specified by:
isMetric
in interfaceDistance<NumberVector>
- Overrides:
isMetric
in classLPNormDistance
- Returns:
true
when metric.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classLPNormDistance
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classLPIntegerNormDistance
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classLPIntegerNormDistance
-
-