LongDenseNdArray
Stay organized with collections
Save and categorize content based on your preferences.
Inherited Methods
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<Long>
|
copyTo( NdArray<Long> 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<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>
|
set( NdArray<Long> src, long... coordinates)
Assigns the value of the N-dimensional element found at the given coordinates.
|
abstract
NdArray<Long>
|
setObject(Long value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
|
abstract
NdArray<Long>
|
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<Long>
|
write( DataBuffer<Long> src)
Write the content of this N-dimensional array from the source buffer.
|
From interface
org.tensorflow.ndarray.NdArray
abstract
NdArray<Long>
|
copyTo( NdArray<Long> 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<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>
|
set( NdArray<Long> src, long... coordinates)
Assigns the value of the N-dimensional element found at the given coordinates.
|
abstract
NdArray<Long>
|
setObject(Long value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
|
abstract
NdArray<Long>
|
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<Long>
|
write( DataBuffer<Long> src)
Write the content of this N-dimensional array from the source buffer.
|
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 |
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 |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2021-11-29 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2021-11-29 UTC."],[],[]]