Modifier and Type | Method and Description |
---|---|
static Dataset |
max(ILazyDataset data,
int... axes) |
static Dataset |
mean(ILazyDataset data,
int... ignoreAxes) |
static Dataset |
mean(int start,
int stop,
ILazyDataset data,
int... ignoreAxes) |
static Dataset |
min(ILazyDataset data,
int... axes) |
static Dataset |
product(ILazyDataset data,
int axis) |
static Dataset |
sum(ILazyDataset data,
boolean ignore,
int... axes) |
static Dataset |
sum(ILazyDataset data,
int... ignoreAxes) |
static Dataset |
sum(ILazyDataset data,
int axis) |
public static Dataset max(ILazyDataset data, int... axes) throws DatasetException
data
- lazy datasetaxes
- (can be negative). If null or empty then use all axesDatasetException
- when data cannot be retrievedpublic static Dataset min(ILazyDataset data, int... axes) throws DatasetException
data
- lazy datasetaxes
- (can be negative). If null or empty then use all axesDatasetException
- when data cannot be retrievedpublic static Dataset sum(ILazyDataset data, int axis) throws DatasetException
data
- lazy datasetaxis
- (can be negative)DatasetException
- when data cannot be retrievedpublic static Dataset sum(ILazyDataset data, int... ignoreAxes) throws DatasetException
data
- lazy datasetignoreAxes
- axes to ignoreDatasetException
- when data cannot be retrievedpublic static Dataset sum(ILazyDataset data, boolean ignore, int... axes) throws DatasetException
data
- lazy datasetignore
- if true, ignore the provided axes, otherwise use only the provided axesaxes
- axes to ignore or accept, depending on the preceding flagDatasetException
- when data cannot be retrievedpublic static Dataset product(ILazyDataset data, int axis) throws DatasetException
data
- lazy datasetaxis
- (can be negative)DatasetException
- when data cannot be retrievedpublic static Dataset mean(int start, int stop, ILazyDataset data, int... ignoreAxes) throws DatasetException
start
- number to begin atstop
- inclusivedata
- lazy datasetignoreAxes
- axes to ignoreDatasetException
- when data cannot be retrievedpublic static Dataset mean(ILazyDataset data, int... ignoreAxes) throws DatasetException
data
- lazy datasetignoreAxes
- axes to ignoreDatasetException
- when data cannot be retrievedCopyright © 2014–2022 Eclipse Foundation. All rights reserved.