Class EuclideanIntegerPoint
- java.lang.Object
-
- org.apache.commons.math.stat.clustering.EuclideanIntegerPoint
-
- All Implemented Interfaces:
java.io.Serializable,Clusterable<EuclideanIntegerPoint>
public class EuclideanIntegerPoint extends java.lang.Object implements Clusterable<EuclideanIntegerPoint>, java.io.Serializable
A simple implementation ofClusterablefor points with integer coordinates.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EuclideanIntegerPoint(int[] point)Build an instance wrapping an integer array.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EuclideanIntegerPointcentroidOf(java.util.Collection<EuclideanIntegerPoint> points)Returns the centroid of the given Collection of points.doubledistanceFrom(EuclideanIntegerPoint p)Returns the distance from the given point.booleanequals(java.lang.Object other)int[]getPoint()Get the n-dimensional point in integer space.inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
getPoint
public int[] getPoint()
Get the n-dimensional point in integer space.- Returns:
- a reference (not a copy!) to the wrapped array
-
distanceFrom
public double distanceFrom(EuclideanIntegerPoint p)
Returns the distance from the given point.- Specified by:
distanceFromin interfaceClusterable<EuclideanIntegerPoint>- Parameters:
p- the point to compute the distance from- Returns:
- the distance from the given point
-
centroidOf
public EuclideanIntegerPoint centroidOf(java.util.Collection<EuclideanIntegerPoint> points)
Returns the centroid of the given Collection of points.- Specified by:
centroidOfin interfaceClusterable<EuclideanIntegerPoint>- Parameters:
points- the Collection of points to compute the centroid of- Returns:
- the centroid of the given Collection of Points
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object- Since:
- 2.1
-
-