Package | Description |
---|---|
cern.colt.map |
Automatically growing and shrinking maps holding objects or primitive
data types such as int, double, etc.
|
cern.colt.matrix.impl |
Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces of
cern.colt.matrix , without subsetting or supersetting. |
Modifier and Type | Class and Description |
---|---|
class |
OpenIntDoubleHashMap
Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
|
Modifier and Type | Method and Description |
---|---|
AbstractIntDoubleMap |
AbstractIntDoubleMap.copy()
Returns a deep copy of the receiver; uses
clone() and casts the result. |
Modifier and Type | Method and Description |
---|---|
void |
OpenIntDoubleHashMap.assign(AbstractIntDoubleMap other)
Clears the receiver, then adds all (key,value) pairs of othervalues to it.
|
void |
AbstractIntDoubleMap.assign(AbstractIntDoubleMap other)
Clears the receiver, then adds all (key,value) pairs of othervalues to it.
|
Modifier and Type | Field and Description |
---|---|
protected AbstractIntDoubleMap |
SparseDoubleMatrix3D.elements |
protected AbstractIntDoubleMap |
SparseDoubleMatrix1D.elements |
protected AbstractIntDoubleMap |
SparseDoubleMatrix2D.elements |
Constructor and Description |
---|
SparseDoubleMatrix1D(int size,
AbstractIntDoubleMap elements,
int offset,
int stride)
Constructs a matrix view with a given number of parameters.
|
SparseDoubleMatrix2D(int rows,
int columns,
AbstractIntDoubleMap elements,
int rowZero,
int columnZero,
int rowStride,
int columnStride)
Constructs a view with the given parameters.
|
SparseDoubleMatrix3D(int slices,
int rows,
int columns,
AbstractIntDoubleMap elements,
int sliceZero,
int rowZero,
int columnZero,
int sliceStride,
int rowStride,
int columnStride)
Constructs a view with the given parameters.
|
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.