Public Methods
LongNdArray | |
static LongNdArray | |
long |
getLong(long... indices)
Returns the long value of the scalar found at the given coordinates.
|
LongNdArray |
read(LongDataBuffer dst)
|
LongNdArray |
setLong(long value, long... indices)
Assigns the long value of the scalar found at the given coordinates.
|
LongNdArray |
write(LongDataBuffer src)
|
Inherited Methods
NdArraySequence<LongNdArray> |
elements(int dimensionIdx)
|
boolean |
equals(Object obj)
|
LongNdArray |
get(long... coords)
|
Long |
getObject(long... coords)
|
int |
hashCode()
|
LongNdArray |
read(DataBuffer<Long> dst)
|
LongNdArray | |
LongNdArray |
setObject(Long value, long... coords)
|
LongNdArray |
slice(long position, DimensionalSpace sliceDimensions)
|
LongNdArray | |
LongNdArray |
write(DataBuffer<Long> src)
|
DimensionalSpace | |
boolean |
equals(Object obj)
|
int |
hashCode()
|
NdArraySequence<LongNdArray> |
scalars()
Returns a sequence of all scalars in this array.
|
Shape |
shape()
|
abstract LongNdArray |
slice(long position, DimensionalSpace dimensions)
|
boolean |
equals(Object arg0)
|
final Class<?> |
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String |
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
abstract NdArray<Long> | |
abstract NdArraySequence<? extends NdArray<T>> |
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
|
abstract boolean |
equals(Object obj)
Checks equality between n-dimensional arrays.
|
abstract NdArray<Long> |
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
|
abstract Long |
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
|
abstract NdArray<Long> |
read(DataBuffer<Long> dst)
Read the content of this N-dimensional array into the destination buffer.
|
abstract NdArraySequence<? extends NdArray<T>> |
scalars()
Returns a sequence of all scalars in this array.
|
abstract NdArray<Long> | |
abstract NdArray<Long> |
setObject(Long value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
|
abstract NdArray<Long> | |
abstract NdArray<Long> |
abstract LongNdArray | |
abstract NdArraySequence<LongNdArray> |
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
|
abstract LongNdArray |
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
|
abstract long |
getLong(long... coordinates)
Returns the long value of the scalar found at the given coordinates.
|
abstract Long |
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
|
abstract LongNdArray |
read(DataBuffer<Long> dst)
|
abstract LongNdArray |
read(LongDataBuffer dst)
|
abstract NdArraySequence<LongNdArray> |
scalars()
Returns a sequence of all scalars in this array.
|
abstract LongNdArray | |
abstract LongNdArray |
setLong(long value, long... coordinates)
Assigns the long value of the scalar found at the given coordinates.
|
abstract LongNdArray |
setObject(Long value, long... coordinates)
|
abstract LongNdArray | |
abstract LongNdArray |
write(LongDataBuffer src)
|
abstract LongNdArray |
write(DataBuffer<Long> src)
|
abstract NdArray<Long> | |
abstract NdArraySequence<? extends NdArray<T>> |
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
|
abstract boolean |
equals(Object obj)
Checks equality between n-dimensional arrays.
|
abstract NdArray<Long> |
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
|
abstract Long |
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
|
abstract NdArray<Long> |
read(DataBuffer<Long> dst)
Read the content of this N-dimensional array into the destination buffer.
|
abstract NdArraySequence<? extends NdArray<T>> |
scalars()
Returns a sequence of all scalars in this array.
|
abstract NdArray<Long> | |
abstract NdArray<Long> |
setObject(Long value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
|
abstract NdArray<Long> | |
abstract NdArray<Long> |
Public Methods
public long getLong (long... indices)
Returns the long value of the scalar found at the given coordinates.
To access the scalar element, the number of coordinates provided must be equal to the number of dimensions of this array (i.e. its rank). For example:
LongNdArray matrix = NdArrays.ofLongs(shape(2, 2)); // matrix rank = 2
matrix.getLong(0, 1); // succeeds, returns 0L
matrix.getLong(0); // throws IllegalRankException
LongNdArray scalar = matrix.get(0, 1); // scalar rank = 0
scalar.getLong(); // succeeds, returns 0L
Parameters
indices | coordinates of the scalar to resolve |
---|
Returns
- value of that scalar
public LongNdArray setLong (long value, long... indices)
Assigns the long value of the scalar found at the given coordinates.
To access the scalar element, the number of coordinates provided must be equal to the number of dimensions of this array (i.e. its rank). For example:
LongNdArray matrix = NdArrays.ofLongs(shape(2, 2)); // matrix rank = 2
matrix.setLong(10L, 0, 1); // succeeds
matrix.setLong(10L, 0); // throws IllegalRankException
LongNdArray scalar = matrix.get(0, 1); // scalar rank = 0
scalar.setLong(10L); // succeeds
Parameters
value | value to assign |
---|---|
indices | coordinates of the scalar to assign |
Returns
- this array