Class DoublePoint
java.lang.Object
org.apache.commons.math3.ml.clustering.DoublePoint
- All Implemented Interfaces:
Serializable
,Clusterable
A simple implementation of
Clusterable
for points with double coordinates.- Since:
- 3.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDoublePoint
(double[] point) Build an instance wrapping an double array.DoublePoint
(int[] point) Build an instance wrapping an integer array. -
Method Summary
-
Constructor Details
-
DoublePoint
public DoublePoint(double[] point) Build an instance wrapping an double array.The wrapped array is referenced, it is not copied.
- Parameters:
point
- the n-dimensional point in double space
-
DoublePoint
public DoublePoint(int[] point) Build an instance wrapping an integer array.The wrapped array is copied to an internal double array.
- Parameters:
point
- the n-dimensional point in integer space
-
-
Method Details