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:
Thomas Neidhart 2013-08-31 15:22:59 +00:00
parent 8d57e61426
commit e7211873ee
7 changed files with 7 additions and 7 deletions

View File

@ -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> {

View File

@ -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> {

View File

@ -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 {

View File

@ -21,7 +21,7 @@ import org.apache.commons.math3.util.MathArrays;
/**
* Calculates the L<sub>&infin;</sub> (max of abs) distance between two points.
*
* @version $Id $
* @version $Id$
* @since 3.2
*/
public class ChebyshevDistance implements DistanceMeasure {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {