Home | History | Annotate | Download | only in clustering

Lines Matching refs:center

38     /** Center of the cluster. */
39 private final T center;
43 * @param center the point which is to be the center of this cluster
45 public Cluster(final T center) {
46 this.center = center;
67 * Get the point chosen to be the center of this cluster.
68 * @return chosen cluster center
71 return center;