static Array |
ArrayMath.all(Array a,
int axis) |
Test whether all array element along a given axis evaluates to True.
|
static Array |
ArrayMath.any(Array a,
int axis) |
Test whether any array element along a given axis evaluates to True.
|
static int |
ArrayMath.argMax(Array a) |
Get the index of the maximum value into the flattened array.
|
static Array |
ArrayMath.argMax(Array a,
int axis) |
Get the indices of the maximum values along an axis.
|
static int |
ArrayMath.argMin(Array a) |
Get the index of the minimum value into the flattened array.
|
static Array |
ArrayMath.argMin(Array a,
int axis) |
Get the indices of the minimum values along an axis.
|
static Array |
ArrayUtil.argSort(Array a,
java.lang.Integer axis) |
Get sorted array index along an axis
|
static Array |
ArrayUtil.concatenate(java.util.List<Array> arrays,
java.lang.Integer axis) |
Concatenate arrays to one array along a axis
|
static Array |
ArrayUtil.concatenate(Array a,
Array b,
java.lang.Integer axis) |
Concatenate two arrays to one array along a axis
|
static Array |
ArrayMath.cumsum(Array a,
int axis) |
Return the cumulative sum of the elements along a given axis.
|
static java.util.List<java.lang.Double> |
ArrayMath.cumsum(Array a,
java.util.List<Range> ranges) |
Compute cumulative sum value of an array
|
static java.lang.Object |
ArrayUtil.interpn(java.util.List<Array> points,
Array values,
Array xi) |
Multidimensional interpolation on regular grids.
|
static Array |
ArrayUtil.interpolate_1d(double x,
Array xp,
Array a,
int axis) |
Interpolates data with any shape over a specified axis.
|
static Array |
ArrayUtil.interpolate_1d(Array xa,
Array xp,
Array a,
int axis) |
Interpolates data with any shape over a specified axis.
|
static Array |
ArrayMath.max(Array a,
int axis) |
Compute maximum value of an array along an axis (dimension)
|
static double |
ArrayMath.max(Array a,
java.util.List<Range> ranges) |
Compute maximum value of an array
|
static Array |
ArrayMath.mean(Array a,
int axis) |
Compute mean value of an array along an axis (dimension)
|
static Array |
ArrayMath.mean(Array a,
java.util.List<java.lang.Integer> axis) |
Compute mean value of an array along an axis (dimension)
|
static double |
ArrayMath.meanRange(Array a,
java.util.List<Range> ranges) |
Compute mean value of an array by ranges
|
static Array |
ArrayMath.median(Array a,
int axis) |
Compute median value of an array along an axis (dimension)
|
static double |
ArrayMath.median(Array a,
java.util.List<Range> ranges) |
Compute median value of an array
|
static Array |
ArrayMath.min(Array a,
int axis) |
Compute minimum value of an array along an axis (dimension)
|
static double |
ArrayMath.min(Array a,
java.util.List<Range> ranges) |
Compute minimum value of an array
|
static Array |
ArrayMath.section(Array a,
int[] origin,
int[] size,
int[] stride) |
Section array
|
static Array |
ArrayMath.section(Array a,
java.util.List<Range> ranges) |
Section array
|
static Array |
ArrayMath.setSection(Array a,
int[] origin,
int[] shape,
Array v) |
Set section
|
static Array |
ArrayMath.setSection(Array a,
java.util.List<Range> ranges,
java.lang.Number v) |
Set section
|
static Array |
ArrayMath.setSection(Array a,
java.util.List<Range> ranges,
java.lang.Object v) |
Set section
|
static Array |
ArrayMath.setSection(Array a,
java.util.List<Range> ranges,
Array v) |
Set section
|
static Array |
ArrayUtil.slice(Array a,
int axis,
int idx) |
Get slice array along an axis
|
static Array |
ArrayUtil.slice(Array a,
int axis,
Array dim,
double v) |
Get slice array along an axis
|
static Array |
ArrayUtil.sort(Array a,
java.lang.Integer axis) |
Sort array along an axis
|
static double |
ArrayMath.std(Array a) |
Compute standard deviation value of an array
|
static double |
ArrayMath.std(Array a,
int ddof) |
Compute standard deviation value of an array
|
static Array |
ArrayMath.std(Array a,
int axis,
int ddof) |
Compute standard deviation value of an array along an axis (dimension)
|
static double |
ArrayMath.std(Array a,
java.util.List<Range> ranges,
int ddof) |
Compute standard deviation value of an array
|
static Array |
ArrayMath.sum(Array a,
int axis) |
Compute sum value of an array along an axis (dimension)
|
static double |
ArrayMath.sum(Array a,
java.util.List<Range> ranges) |
Compute sum value of an array
|
static Array |
ArrayMath.take(Array a,
Array indices,
java.lang.Integer axis) |
Take elements from an array along an axis.
|
static Array |
ArrayMath.trapz(Array a,
double dx,
int axis) |
Integrate vector array using the composite trapezoidal rule.
|
static double |
ArrayMath.trapz(Array y,
double dx,
java.util.List<Range> ranges) |
Integrate vector array using the composite trapezoidal rule.
|
static Array |
ArrayMath.trapz(Array a,
Array x,
int axis) |
Integrate vector array using the composite trapezoidal rule.
|
static double |
ArrayMath.trapz(Array y,
Array x,
java.util.List<Range> ranges) |
Integrate vector array using the composite trapezoidal rule.
|
static Array |
ArrayUtil.unique(Array a,
java.lang.Integer axis) |
Find the unique elements of an array.
|
static double |
ArrayMath.var(Array a,
int ddof) |
Compute variance value of an array
|
static Array |
ArrayMath.var(Array a,
int axis,
int ddof) |
Compute variance value of an array along an axis (dimension)
|
static double |
ArrayMath.var(Array a,
java.util.List<Range> ranges,
int ddof) |
Compute variance value of an array
|