Searched defs:EuclideanIntegerPoint (Results 1 - 1 of 1) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DEuclideanIntegerPoint.java30 public class EuclideanIntegerPoint implements Clusterable<EuclideanIntegerPoint>, Serializable { class in inherits:Clusterable,Serializable
43 public EuclideanIntegerPoint(final int[] point) { method in class:EuclideanIntegerPoint
56 public double distanceFrom(final EuclideanIntegerPoint p) {
61 public EuclideanIntegerPoint centroidOf(final Collection<EuclideanIntegerPoint> points) {
63 for (EuclideanIntegerPoint p : points) {
71 return new EuclideanIntegerPoint(centroid);
77 if (!(other instanceof EuclideanIntegerPoint)) {
80 final int[] otherPoint = ((EuclideanIntegerPoint) othe
[all...]

Completed in 89 milliseconds