public     class
      DenseNdArray
Public Methods
| NdArray<T> | |
| static <T> NdArray<T> | 
Inherited Methods
            From class
            org.tensorflow.ndarray.impl.dense.AbstractDenseNdArray
| NdArraySequence<NdArray<T>> | 
elements(int dimensionIdx)
                
               | 
| boolean | 
equals(Object obj)
                
               | 
| NdArray<T> | 
get(long... coords)
                
               | 
| T | 
getObject(long... coords)
                
               | 
| int | 
hashCode()
                
               | 
| NdArray<T> | 
read(DataBuffer<T> dst)
                
               | 
| NdArray<T> | |
| NdArray<T> | 
setObject(T value, long... coords)
                
               | 
| NdArray<T> | 
slice(long position, DimensionalSpace sliceDimensions)
                
               | 
| NdArray<T> | |
| NdArray<T> | 
write(DataBuffer<T> src)
                
               | 
            From class
            org.tensorflow.ndarray.impl.AbstractNdArray
| DimensionalSpace | |
| boolean | 
equals(Object obj)
                
               | 
| int | 
hashCode()
                
               | 
| NdArraySequence<NdArray<T>> | 
scalars()
                
                   Returns a sequence of all scalars in this array. | 
| Shape | 
shape()
                
               | 
| abstract NdArray<T> | 
slice(long position, DimensionalSpace dimensions)
                
               | 
            From class
            java.lang.Object
          
| 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()
                
               | 
            From interface
            org.tensorflow.ndarray.NdArray
| abstract NdArray<T> | |
| 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> | |
| abstract NdArraySequence<? extends NdArray<T>> | 
scalars()
                
                   Returns a sequence of all scalars in this array. | 
| abstract NdArray<T> | |
| abstract NdArray<T> | 
setObject(T value, long... coordinates)
                
                   Assigns the value of the scalar found at the given coordinates. | 
| abstract NdArray<T> | |
| abstract NdArray<T> | 
            From interface
            org.tensorflow.ndarray.Shaped