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
-
dxh
- Higher X error bar.
-
dxl
- Lower X error bar.
-
dyh
- Higher Y error bar.
-
dyl
- Lower Y error bar.
-
x
- The X-coordinate.
-
y
- The Y-coordinate.
-
DataPoint(double, double)
- Constructor.
-
DataPoint(double, double, double, double)
- Constructor.
-
DataPoint(double, double, double, double, double, double)
- Constructor.
-
DataPoint(Double, Double, Double, Double, Double, Double)
- Constructor.
x
public double x
- The X-coordinate.
dxh
public double dxh
- Higher X error bar.
dxl
public double dxl
- Lower X error bar.
y
public double y
- The Y-coordinate.
dyh
public double dyh
- Higher Y error bar.
dyl
public double dyl
- Lower Y error bar.
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.
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.
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.
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