Package adams.data.sequence
Interface XYSequencePointWithErrors
-
- All Superinterfaces:
CloneHandler,Comparable,DataPoint,Serializable
- All Known Implementing Classes:
SequencePlotPoint
public interface XYSequencePointWithErrors extends DataPoint
ExtendsDataPointto store X/Y error information as well.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Double[]getErrorX()Returns the error information for X.Double[]getErrorY()Returns the error information for Y.doublegetMaxX()Returns the maximum for X.doublegetMaxY()Returns the maximum for Y.doublegetMinX()Returns the minimum for X.doublegetMinY()Returns the minimum for Y.booleanhasErrorX()Checks whether error information for X is available.booleanhasErrorY()Checks whether error information for Y is available.-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getMinX
double getMinX()
Returns the minimum for X.- Returns:
- the minimum
-
getMaxX
double getMaxX()
Returns the maximum for X.- Returns:
- the maximum
-
hasErrorX
boolean hasErrorX()
Checks whether error information for X is available.- Returns:
- true if available
-
getErrorX
Double[] getErrorX()
Returns the error information for X.- Returns:
- the error information, null if not available
-
getMinY
double getMinY()
Returns the minimum for Y.- Returns:
- the minimum
-
getMaxY
double getMaxY()
Returns the maximum for Y.- Returns:
- the maximum
-
hasErrorY
boolean hasErrorY()
Checks whether error information for Y is available.- Returns:
- true if available
-
getErrorY
Double[] getErrorY()
Returns the error information for Y.- Returns:
- the error information, null if not available
-
-