procope.evaluation.comparison
Class Point

java.lang.Object
  extended by procope.evaluation.comparison.Point

public class Point
extends Object

Represents a pair of two values.

Can for instance be used to calculate correlation coefficients.

Author:
jan
See Also:
CorrelationCoefficient

Constructor Summary
Point(float x, float y)
          Creates a new point of two given values
 
Method Summary
 float getX()
          Returns the x coordinate
 float getY()
          Returns the y coordinate
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Point

public Point(float x,
             float y)
Creates a new point of two given values

Parameters:
x - x value
y - y value
Method Detail

getX

public float getX()
Returns the x coordinate

Returns:
x coordinate

getY

public float getY()
Returns the y coordinate

Returns:
y coordinate