Uses of Class
cern.colt.map.AbstractIntDoubleMap
Packages that use AbstractIntDoubleMap
Package
Description
Automatically growing and shrinking maps holding objects or primitive
data types such as int, double, etc.
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.-
Uses of AbstractIntDoubleMap in cern.colt.map
Subclasses of AbstractIntDoubleMap in cern.colt.mapModifier and TypeClassDescriptionclass
Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.Methods in cern.colt.map that return AbstractIntDoubleMapModifier and TypeMethodDescriptionAbstractIntDoubleMap.copy()
Returns a deep copy of the receiver; usesclone()
and casts the result.Methods in cern.colt.map with parameters of type AbstractIntDoubleMapModifier and TypeMethodDescriptionvoid
AbstractIntDoubleMap.assign
(AbstractIntDoubleMap other) Clears the receiver, then adds all (key,value) pairs of othervalues to it.void
OpenIntDoubleHashMap.assign
(AbstractIntDoubleMap other) Clears the receiver, then adds all (key,value) pairs of othervalues to it. -
Uses of AbstractIntDoubleMap in cern.colt.matrix.impl
Fields in cern.colt.matrix.impl declared as AbstractIntDoubleMapModifier and TypeFieldDescriptionprotected AbstractIntDoubleMap
SelectedSparseDoubleMatrix1D.elements
protected AbstractIntDoubleMap
SelectedSparseDoubleMatrix2D.elements
protected AbstractIntDoubleMap
SelectedSparseDoubleMatrix3D.elements
The elements of this matrix.protected AbstractIntDoubleMap
SparseDoubleMatrix1D.elements
protected AbstractIntDoubleMap
SparseDoubleMatrix2D.elements
protected AbstractIntDoubleMap
SparseDoubleMatrix3D.elements
Constructors in cern.colt.matrix.impl with parameters of type AbstractIntDoubleMapModifierConstructorDescriptionprotected
SelectedSparseDoubleMatrix1D
(int size, AbstractIntDoubleMap elements, int zero, int stride, int[] offsets, int offset) Constructs a matrix view with the given parameters.protected
SelectedSparseDoubleMatrix1D
(AbstractIntDoubleMap elements, int[] offsets) Constructs a matrix view with the given parameters.protected
SelectedSparseDoubleMatrix2D
(int rows, int columns, AbstractIntDoubleMap elements, int rowZero, int columnZero, int rowStride, int columnStride, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protected
SelectedSparseDoubleMatrix2D
(AbstractIntDoubleMap elements, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protected
SelectedSparseDoubleMatrix3D
(AbstractIntDoubleMap elements, int[] sliceOffsets, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protected
SparseDoubleMatrix1D
(int size, AbstractIntDoubleMap elements, int offset, int stride) Constructs a matrix view with a given number of parameters.protected
SparseDoubleMatrix2D
(int rows, int columns, AbstractIntDoubleMap elements, int rowZero, int columnZero, int rowStride, int columnStride) Constructs a view with the given parameters.protected
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.