AbstractNdArray

public abstract class AbstractNdArray
Known Direct Subclasses

Public Methods

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)

Inherited Methods

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 DimensionalSpace dimensions ()

public boolean equals (Object obj)

public int hashCode ()

public NdArraySequence<U> scalars ()

Returns a sequence of all scalars in this array.

This is equivalent to call elements(shape().numDimensions() - 1)

Returns
  • an NdArray sequence

public Shape shape ()

public abstract U slice (long position, DimensionalSpace dimensions)