public interface Cell2DDataset
It represents values distributed on a 2D grid and their statistical information.
| Modifier and Type | Method and Description |
|---|---|
Statistics |
getStatistics()
Returns the statistics of all values at all cells.
|
double |
getValue(int x,
int y)
Returns the value at the given coordinates.
|
org.epics.util.array.ListNumber |
getXBoundaries()
Returns the boundaries of the cells along x.
|
int |
getXCount()
The number of cells defined along the x direction.
|
Range |
getXRange()
The range along x.
|
org.epics.util.array.ListNumber |
getYBoundaries()
Returns the boundaries of the cells along y.
|
int |
getYCount()
The number of cells defined along the y direction.
|
Range |
getYRange()
The range along y.
|
double getValue(int x,
int y)
x - the x coordinatey - the y coordinateArrayIndexOutOfBoundsException - if any coordinate is $lt; 0 or >= its countStatistics getStatistics()
If the the grid has zero cells, or if all values are NaN, it returns null.
org.epics.util.array.ListNumber getXBoundaries()
The number of elements matches getXCount() + 1. If
no cells are defined, it will return null. The boundaries are
ordered from the smallest to the greatest.
Range getXRange()
Effectively the first and last elements of getXBoundaries().
If no cells are defined, it will return null.
int getXCount()
org.epics.util.array.ListNumber getYBoundaries()
The number of elements matches getYCount() + 1. If
no cells are defined, it will return null. The boundaries are
ordered from the smallest to the greatest.
Range getYRange()
Effectively the first and last elements of getYBoundaries().
If no cells are defined, it will return null.
int getYCount()
Copyright © 2012-2013 Brookhaven National Laboratory, University of Michigan. All Rights Reserved.