Fix Id tags.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1519184 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8d57e61426
commit
e7211873ee
|
@ -23,7 +23,7 @@ package org.apache.commons.math3.ml.clustering;
|
|||
* of the original data set.
|
||||
*
|
||||
* @param <T> the type of points that can be clustered
|
||||
* @version $Id $
|
||||
* @version $Id$
|
||||
* @since 3.2
|
||||
*/
|
||||
public class CentroidCluster<T extends Clusterable> extends Cluster<T> {
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.apache.commons.math3.ml.distance.DistanceMeasure;
|
|||
* Base class for clustering algorithms.
|
||||
*
|
||||
* @param <T> the type of points that can be clustered
|
||||
* @version $Id $
|
||||
* @version $Id$
|
||||
* @since 3.2
|
||||
*/
|
||||
public abstract class Clusterer<T extends Clusterable> {
|
||||
|
|
|
@ -21,7 +21,7 @@ import org.apache.commons.math3.util.FastMath;
|
|||
/**
|
||||
* Calculates the Canberra distance between two points.
|
||||
*
|
||||
* @version $Id $
|
||||
* @version $Id$
|
||||
* @since 3.2
|
||||
*/
|
||||
public class CanberraDistance implements DistanceMeasure {
|
||||
|
|
|
@ -21,7 +21,7 @@ import org.apache.commons.math3.util.MathArrays;
|
|||
/**
|
||||
* Calculates the L<sub>∞</sub> (max of abs) distance between two points.
|
||||
*
|
||||
* @version $Id $
|
||||
* @version $Id$
|
||||
* @since 3.2
|
||||
*/
|
||||
public class ChebyshevDistance implements DistanceMeasure {
|
||||
|
|
|
@ -21,7 +21,7 @@ import java.io.Serializable;
|
|||
/**
|
||||
* Interface for distance measures of n-dimensional vectors.
|
||||
*
|
||||
* @version $Id $
|
||||
* @version $Id$
|
||||
* @since 3.2
|
||||
*/
|
||||
public interface DistanceMeasure extends Serializable {
|
||||
|
|
|
@ -21,7 +21,7 @@ import org.apache.commons.math3.util.MathArrays;
|
|||
/**
|
||||
* Calculates the L<sub>2</sub> (Euclidean) distance between two points.
|
||||
*
|
||||
* @version $Id $
|
||||
* @version $Id$
|
||||
* @since 3.2
|
||||
*/
|
||||
public class EuclideanDistance implements DistanceMeasure {
|
||||
|
|
|
@ -21,7 +21,7 @@ import org.apache.commons.math3.util.MathArrays;
|
|||
/**
|
||||
* Calculates the L<sub>1</sub> (sum of abs) distance between two points.
|
||||
*
|
||||
* @version $Id $
|
||||
* @version $Id$
|
||||
* @since 3.2
|
||||
*/
|
||||
public class ManhattanDistance implements DistanceMeasure {
|
||||
|
|
Loading…
Reference in New Issue