edu.udo.cs.yale.tools.math.som
Class EuclideanDistance

java.lang.Object
  extended by edu.udo.cs.yale.tools.math.som.EuclideanDistance
All Implemented Interfaces:
DistanceFunction

public class EuclideanDistance
extends java.lang.Object
implements DistanceFunction

This class provides a distance measure, equivalent to the euclidian distance measure.

Version:
$Id$
Author:
Sebastian Land

Constructor Summary
EuclideanDistance()
           
 
Method Summary
 double getDistance(double[] point1, double[] point2)
          This method returns the distance between point1 and point2.
 double getDistance(int[] point1, int[] point2)
          This method returns the distance between point1 and point2.
 double getDistance(int[] point1, int[] point2, int[] dimensions)
          Integer distance calculation regards the wrap around of the net (hypertorus)
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EuclideanDistance

public EuclideanDistance()
Method Detail

getDistance

public double getDistance(double[] point1,
                          double[] point2)
Description copied from interface: DistanceFunction
This method returns the distance between point1 and point2. The dimenson of the points is represented by the length of the arrays. This method should return the same value as the method below, if points are equivalent!

Specified by:
getDistance in interface DistanceFunction


getDistance

public double getDistance(int[] point1,
                          int[] point2)
Description copied from interface: DistanceFunction
This method returns the distance between point1 and point2. The dimenson of the points is represented by the length of the arrays. This method should return the same value as the method above, if points are equivalent!

Specified by:
getDistance in interface DistanceFunction


getDistance

public double getDistance(int[] point1,
                          int[] point2,
                          int[] dimensions)
Integer distance calculation regards the wrap around of the net (hypertorus)

Specified by:
getDistance in interface DistanceFunction



Copyright © 2001-2006