All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class user.plot.DataPoint

java.lang.Object
   |
   +----user.plot.DataPoint

public class DataPoint
extends Object
Auxiliary class of the PlotCanvas to hold the data read in from the file.

See Also:
PlotCanvas

Variable Index

 o dxh
Higher X error bar.
 o dxl
Lower X error bar.
 o dyh
Higher Y error bar.
 o dyl
Lower Y error bar.
 o x
The X-coordinate.
 o y
The Y-coordinate.

Constructor Index

 o DataPoint(double, double)
Constructor.
 o DataPoint(double, double, double, double)
Constructor.
 o DataPoint(double, double, double, double, double, double)
Constructor.
 o DataPoint(Double, Double, Double, Double, Double, Double)
Constructor.

Variables

 o x
 public double x
The X-coordinate.

 o dxh
 public double dxh
Higher X error bar.

 o dxl
 public double dxl
Lower X error bar.

 o y
 public double y
The Y-coordinate.

 o dyh
 public double dyh
Higher Y error bar.

 o dyl
 public double dyl
Lower Y error bar.

Constructors

 o DataPoint
 public DataPoint(Double x_obj,
                  Double dxh_obj,
                  Double dxl_obj,
                  Double y_obj,
                  Double dyh_obj,
                  Double dyl_obj)
Constructor. Specify the coordinates and the higher and lower error bars. When an argument is null, the corresponding object is not used.

Parameters:
x_obj - The X-coordinate.
dxh_obj - The higher X error bar.
dxl_obj - The lower X error bar.
y_obj - The Y-coordinate.
dyh_obj - The higher Y error bar.
dyl_obj - The lower Y error bar.
 o DataPoint
 public DataPoint(double x,
                  double y)
Constructor. Specify the X-coordinate and the -coordinate without error bars. The coordinates are specified by their primitive type.

Parameters:
x - The X-coordinate.
y - The Y-coordinate.
 o DataPoint
 public DataPoint(double x,
                  double y,
                  double dyh,
                  double dyl)
Constructor. Specify the X-coordinate and the -coordinate without the X error bar. The coordinates are specified by their primitive type.

Parameters:
x - The X-coordinate.
y - The Y-coordinate.
dyh - The higher Y error bar.
dyl - The lower Y error bar.
 o DataPoint
 public DataPoint(double x,
                  double dxh,
                  double dxl,
                  double y,
                  double dyh,
                  double dyl)
Constructor. Specify the X-coordinate and the -coordinate with error bars. The coordinates are specified by their primitive type.

Parameters:
x - The X-coordinate.
dxh - The higher X error bar.
dxl - The lower X error bar.
y - The Y-coordinate.
dyh - The higher Y error bar.
dyl - The lower Y error bar.

All Packages  Class Hierarchy  This Package  Previous  Next  Index