public interface DoubleArrayND extends ArrayND
| Modifier and Type | Method and Description |
|---|---|
double |
get(IntTuple indices)
Returns the value at the given position.
|
default java.util.stream.DoubleStream |
stream()
Returns a sequential
DoubleStream with this array as its source. |
default DoubleArrayND |
subArray(IntTuple fromIndices,
IntTuple toIndices)
Returns a view on a portion of this array.
|
coordinates, getPreferredIterationOrder, getSize, getTotalSizedouble get(IntTuple indices)
size of this array, but
explicit bounds checking along each dimension is not guaranteed.indices - The indices describing the positionNullPointerException - if the given indices are nullIllegalArgumentException - If the given indices do not have
the same size as the size of this array.IndexOutOfBoundsException - May be thrown if the indices are
not valid. That is, if fromIndex < 0 or
toIndex > size or fromIndex > toIndex
for any dimension. But explicit bounds checking is not guaranteed.default DoubleArrayND subArray(IntTuple fromIndices, IntTuple toIndices)
ArrayNDdefault java.util.stream.DoubleStream stream()
DoubleStream with this array as its source.Copyright © 2015. All Rights Reserved.