public class LPIntegerNormDistanceFunction extends LPNormDistanceFunction
NumberVector
s, optimized version for integer
values of p. This will likely not have huge impact, but may vary from CPU and
virtual machine version.
When using the parameterization API, LPNormDistanceFunction
will
automatically use this class for integer values.
The Lp distance is defined as: \[ L_p(\vec{x},\vec{y}) := \left(\sum_i (x_i-y_i)\right)^{1/p} \]
Modifier and Type | Class and Description |
---|---|
static class |
LPIntegerNormDistanceFunction.Parameterizer
Parameterization class.
|
Modifier and Type | Field and Description |
---|---|
(package private) int |
intp
Integer value of p.
|
invp, p
Constructor and Description |
---|
LPIntegerNormDistanceFunction(int p)
Constructor, internal version.
|
Modifier and Type | Method and 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() |
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)
Compute unscaled distance in a range of dimensions.
|
private double |
preDistanceMBR(SpatialComparable mbr1,
SpatialComparable mbr2,
int start,
int end)
Compute unscaled distance in a range of dimensions.
|
private double |
preDistanceVM(NumberVector v,
SpatialComparable mbr,
int start,
int end)
Compute unscaled distance in a range of dimensions.
|
private double |
preNorm(NumberVector v,
int start,
int end)
Compute unscaled norm in a range of dimensions.
|
private double |
preNormMBR(SpatialComparable mbr,
int start,
int end)
Compute unscaled norm in a range of dimensions.
|
getInputTypeRestriction, getP, isMetric, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
instantiate
isSquared, isSymmetric
public LPIntegerNormDistanceFunction(int p)
p
- Parameter pprivate double preDistance(NumberVector v1, NumberVector v2, int start, int end)
v1
- First objectv2
- Second objectstart
- First dimensionend
- Exclusive last dimensionprivate double preDistanceVM(NumberVector v, SpatialComparable mbr, int start, int end)
v
- First vectormbr
- Second MBRstart
- First dimensionend
- Exclusive last dimensionprivate double preDistanceMBR(SpatialComparable mbr1, SpatialComparable mbr2, int start, int end)
mbr1
- First MBRmbr2
- Second MBRstart
- First dimensionend
- Exclusive last dimensionprivate double preNorm(NumberVector v, int start, int end)
v
- Data objectstart
- First dimensionend
- Exclusive last dimensionprivate double preNormMBR(SpatialComparable mbr, int start, int end)
mbr
- Data objectstart
- First dimensionend
- Exclusive last dimensionpublic double distance(NumberVector v1, NumberVector v2)
PrimitiveDistanceFunction
distance
in interface NumberVectorDistanceFunction<NumberVector>
distance
in interface PrimitiveDistanceFunction<NumberVector>
distance
in class LPNormDistanceFunction
v1
- first DatabaseObjectv2
- second DatabaseObjectpublic double norm(NumberVector v)
Norm
norm
in interface Norm<NumberVector>
norm
in class LPNormDistanceFunction
v
- Objectpublic double minDist(SpatialComparable mbr1, SpatialComparable mbr2)
SpatialPrimitiveDistanceFunction
minDist
in interface SpatialPrimitiveDistanceFunction<NumberVector>
minDist
in class LPNormDistanceFunction
mbr1
- the first MBR objectmbr2
- the second MBR objectpublic boolean equals(java.lang.Object obj)
equals
in class LPNormDistanceFunction
public int hashCode()
hashCode
in class LPNormDistanceFunction
Copyright © 2019 ELKI Development Team. License information.