public interface Point2DDataset
It represents a list of ordered tuples of two values, and their statistical information. The order may not be meaningful, but can be used to identify the points.
| Modifier and Type | Method and Description |
|---|---|
int |
getCount()
The number of points in the dataset.
|
Statistics |
getXStatistics()
The statistical information of x values.
|
org.epics.util.array.ListNumber |
getXValues()
The x values of the point.
|
Statistics |
getYStatistics()
The statistical information of x values.
|
org.epics.util.array.ListNumber |
getYValues()
The y values of the point.
|
org.epics.util.array.ListNumber getXValues()
If the dataset is empty, it returns an empty list.
org.epics.util.array.ListNumber getYValues()
If the dataset is empty, it returns an empty list.
Statistics getXStatistics()
If the dataset is empty, or if it contains only NaN values, it returns null.
Statistics getYStatistics()
If the dataset is empty, or if it contains only NaN values, it returns null.
int getCount()
This number matches the size of the list returned by #getValues() .
Copyright © 2012-2013 Brookhaven National Laboratory, University of Michigan. All Rights Reserved.