public class ArrayDouble extends Array
Array
Modifier and Type | Class and Description |
---|---|
static class |
ArrayDouble.D0
Concrete implementation of Array specialized for doubles, rank 0.
|
static class |
ArrayDouble.D1
Concrete implementation of Array specialized for doubles, rank 1.
|
static class |
ArrayDouble.D2
Concrete implementation of Array specialized for doubles, rank 2.
|
static class |
ArrayDouble.D3
Concrete implementation of Array specialized for doubles, rank 3.
|
static class |
ArrayDouble.D4
Concrete implementation of Array specialized for doubles, rank 4.
|
static class |
ArrayDouble.D5
Concrete implementation of Array specialized for doubles, rank 5.
|
static class |
ArrayDouble.D6
Concrete implementation of Array specialized for doubles, rank 6.
|
static class |
ArrayDouble.D7
Concrete implementation of Array specialized for doubles, rank 7.
|
Constructor and Description |
---|
ArrayDouble(int[] shape)
Create a new Array of type double and the given shape.
|
Modifier and Type | Method and Description |
---|---|
double |
get(Index i)
get the value at the specified index.
|
boolean |
getBoolean(Index i)
not legal, throw ForbiddenConversionException
|
boolean |
getBoolean(int index) |
byte |
getByte(Index i)
Get the array element at the current element of ima, as a byte.
|
byte |
getByte(int index) |
char |
getChar(Index i)
Get the array element at the current element of ima, as a char.
|
char |
getChar(int index) |
ByteBuffer |
getDataAsByteBuffer()
This gets the data as a ByteBuffer, in correct order.
|
double |
getDouble(Index i)
Get the array element at the current element of ima, as a double.
|
double |
getDouble(int index) |
Class |
getElementType()
Return the element class type
|
float |
getFloat(Index i)
Get the array element at the current element of ima, as a float.
|
float |
getFloat(int index) |
int |
getInt(Index i)
Get the array element at the current element of ima, as a int.
|
int |
getInt(int index) |
long |
getLong(Index i)
Get the array element at the current element of ima, as a long.
|
long |
getLong(int index) |
Object |
getObject(Index i)
Get the array element at index as an Object.
|
Object |
getObject(int index) |
short |
getShort(Index i)
Get the array element at the current element of ima, as a short.
|
short |
getShort(int index) |
Object |
getStorage()
Get underlying primitive array storage.
|
void |
set(Index i,
double value)
set the value at the specified index.
|
void |
setBoolean(Index i,
boolean value)
not legal, throw ForbiddenConversionException
|
void |
setBoolean(int index,
boolean value) |
void |
setByte(Index i,
byte value)
Set the array element at the current element of ima.
|
void |
setByte(int index,
byte value) |
void |
setChar(Index i,
char value)
Set the array element at the current element of ima.
|
void |
setChar(int index,
char value) |
void |
setDouble(Index i,
double value)
Set the array element at the current element of ima.
|
void |
setDouble(int index,
double value) |
void |
setFloat(Index i,
float value)
Set the array element at the current element of ima.
|
void |
setFloat(int index,
float value) |
void |
setInt(Index i,
int value)
Set the array element at the current element of ima.
|
void |
setInt(int index,
int value) |
void |
setLong(Index i,
long value)
Set the array element at the current element of ima.
|
void |
setLong(int index,
long value) |
void |
setObject(Index i,
Object value)
Set the array element at index to the specified value.
|
void |
setObject(int index,
Object value) |
void |
setShort(Index i,
short value)
Set the array element at the current element of ima.
|
void |
setShort(int index,
short value) |
arraycopy, copy, copyTo1DJavaArray, copyToNDJavaArray, factory, factory, factory, factory, factoryConstant, flip, get1DJavaArray, get1DJavaArray, getDataAsByteBuffer, getDataAsByteBuffer, getDataType, getIndex, getIndexIterator, getRangeIterator, getRank, getShape, getSize, getSizeBytes, hasNext, isConstant, isUnsigned, isVlen, makeArray, makeArray, makeArray, makeArrayRankPlusOne, makeFromJavaArray, makeFromJavaArray, makeObjectArray, makeVlenArray, next, nextBoolean, nextByte, nextChar, nextDouble, nextFloat, nextInt, nextLong, nextShort, permute, reduce, reduce, resetLocalIterator, reshape, reshapeNoCopy, section, section, section, sectionNoReduce, sectionNoReduce, shapeToString, slice, toString, transpose
public ArrayDouble(int[] shape)
shape
- the shape of the Array.public Object getStorage()
Array
getStorage
in class Array
public ByteBuffer getDataAsByteBuffer()
Array
getDataAsByteBuffer
in class Array
public Class getElementType()
getElementType
in class Array
public double get(Index i)
public void set(Index i, double value)
public double getDouble(Index i)
Array
public void setDouble(Index i, double value)
Array
public float getFloat(Index i)
Array
public void setFloat(Index i, float value)
Array
public long getLong(Index i)
Array
public void setLong(Index i, long value)
Array
public int getInt(Index i)
Array
public void setInt(Index i, int value)
Array
public short getShort(Index i)
Array
public void setShort(Index i, short value)
Array
public byte getByte(Index i)
Array
public void setByte(Index i, byte value)
Array
public char getChar(Index i)
Array
public void setChar(Index i, char value)
Array
public boolean getBoolean(Index i)
getBoolean
in class Array
i
- Index with current element setindex
cast to boolean if necessary.public void setBoolean(Index i, boolean value)
setBoolean
in class Array
i
- Index with current element setvalue
- the new value; cast to underlying data type if necessary.public Object getObject(Index i)
Array
public void setObject(Index i, Object value)
Array
public boolean getBoolean(int index)
getBoolean
in class Array
public void setBoolean(int index, boolean value)
setBoolean
in class Array