Public Methods
IntNdArray | |
static IntNdArray | |
int |
getInt(long... indices)
Returns the integer value of the scalar found at the given coordinates.
|
IntNdArray |
read(IntDataBuffer dst)
|
IntNdArray |
setInt(int value, long... indices)
Assigns the integer value of the scalar found at the given coordinates.
|
IntNdArray |
write(IntDataBuffer src)
|
Inherited Methods
NdArraySequence<IntNdArray> |
elements(int dimensionIdx)
|
boolean |
equals(Object obj)
|
IntNdArray |
get(long... coords)
|
Integer |
getObject(long... coords)
|
int |
hashCode()
|
IntNdArray |
read(DataBuffer<Integer> dst)
|
IntNdArray | |
IntNdArray |
setObject(Integer value, long... coords)
|
IntNdArray |
slice(long position, DimensionalSpace sliceDimensions)
|
IntNdArray | |
IntNdArray |
write(DataBuffer<Integer> src)
|
DimensionalSpace | |
boolean |
equals(Object obj)
|
int |
hashCode()
|
NdArraySequence<IntNdArray> |
scalars()
Returns a sequence of all scalars in this array.
|
Shape |
shape()
|
abstract IntNdArray |
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<Integer> | |
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<Integer> |
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
|
abstract Integer |
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
|
abstract NdArray<Integer> |
read(DataBuffer<Integer> 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<Integer> | |
abstract NdArray<Integer> |
setObject(Integer value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
|
abstract NdArray<Integer> | |
abstract NdArray<Integer> |
write(DataBuffer<Integer> src)
Write the content of this N-dimensional array from the source buffer.
|
abstract IntNdArray | |
abstract NdArraySequence<IntNdArray> |
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
|
abstract IntNdArray |
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
|
abstract int |
getInt(long... coordinates)
Returns the integer value of the scalar found at the given coordinates.
|
abstract Integer |
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
|
abstract IntNdArray |
read(IntDataBuffer dst)
|
abstract IntNdArray |
read(DataBuffer<Integer> dst)
|
abstract NdArraySequence<IntNdArray> |
scalars()
Returns a sequence of all scalars in this array.
|
abstract IntNdArray | |
abstract IntNdArray |
setInt(int value, long... coordinates)
Assigns the integer value of the scalar found at the given coordinates.
|
abstract IntNdArray |
setObject(Integer value, long... coordinates)
|
abstract IntNdArray | |
abstract IntNdArray |
write(DataBuffer<Integer> src)
|
abstract IntNdArray |
write(IntDataBuffer src)
|
abstract NdArray<Integer> | |
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<Integer> |
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
|
abstract Integer |
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
|
abstract NdArray<Integer> |
read(DataBuffer<Integer> 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<Integer> | |
abstract NdArray<Integer> |
setObject(Integer value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
|
abstract NdArray<Integer> | |
abstract NdArray<Integer> |
write(DataBuffer<Integer> src)
Write the content of this N-dimensional array from the source buffer.
|
Public Methods
public int getInt (long... indices)
Returns the integer 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:
IntNdArray matrix = NdArrays.ofInts(shape(2, 2)); // matrix rank = 2
matrix.getInt(0, 1); // succeeds, returns 0
matrix.getInt(0); // throws IllegalRankException
IntNdArray scalar = matrix.get(0, 1); // scalar rank = 0
scalar.getInt(); // succeeds, returns 0
Parameters
indices | coordinates of the scalar to resolve |
---|
Returns
- value of that scalar
public IntNdArray setInt (int value, long... indices)
Assigns the integer 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:
IntNdArray matrix = NdArrays.ofInts(shape(2, 2)); // matrix rank = 2
matrix.setInt(10, 0, 1); // succeeds
matrix.setInt(10, 0); // throws IllegalRankException
IntNdArray scalar = matrix.get(0, 1); // scalar rank = 0
scalar.setInt(10); // succeeds
Parameters
value | value to assign |
---|---|
indices | coordinates of the scalar to assign |
Returns
- this array