AbstractDenseNdArray

public abstract class AbstractDenseNdArray

Public Methods

NdArraySequence<U>
elements(int dimensionIdx)
boolean
equals(Object obj)
U
get(long... coords)
T
getObject(long... coords)
int
U
read(DataBuffer<T> dst)
U
set(NdArray<T> src, long... coordinates)
U
setObject(T value, long... coords)
U
slice(long position, DimensionalSpace sliceDimensions)
U
slice(Index... indices)
U
write(DataBuffer<T> src)

Inherited Methods

org.tensorflow.ndarray.impl.AbstractNdArray
DimensionalSpace
boolean
equals(Object obj)
int
NdArraySequence<U>
scalars()
Returns a sequence of all scalars in this array.
Shape
shape()
abstract U
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()
org.tensorflow.ndarray.NdArray
abstract NdArray<T>
copyTo(NdArray<T> dst)
Copy the content of this array to the destination array.
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<T>
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
abstract T
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
abstract NdArray<T>
read(DataBuffer<T> 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<T>
set(NdArray<T> src, long... coordinates)
Assigns the value of the N-dimensional element found at the given coordinates.
abstract NdArray<T>
setObject(T value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
abstract NdArray<T>
slice(Index... indices)
Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
abstract NdArray<T>
write(DataBuffer<T> src)
Write the content of this N-dimensional array from the source buffer.
org.tensorflow.ndarray.Shaped
abstract int
rank()
abstract Shape
shape()
abstract long
size()
Computes and returns the total size of this container, in number of values.

Public Methods

public NdArraySequence<U> elements (int dimensionIdx)

public boolean equals (Object obj)

public U get (long... coords)

public T getObject (long... coords)

public int hashCode ()

public U read (DataBuffer<T> dst)

public U set (NdArray<T> src, long... coordinates)

public U setObject (T value, long... coords)

public U slice (long position, DimensionalSpace sliceDimensions)

public U slice (Index... indices)

public U write (DataBuffer<T> src)