Uses of Class
cern.colt.map.AbstractIntDoubleMap
-
Packages that use AbstractIntDoubleMap 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 ofcern.colt.matrix, without subsetting or supersetting. -
-
Uses of AbstractIntDoubleMap in cern.colt.map
Subclasses of AbstractIntDoubleMap in cern.colt.map Modifier and Type Class Description classOpenIntDoubleHashMapHash 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 AbstractIntDoubleMap Modifier and Type Method Description AbstractIntDoubleMapAbstractIntDoubleMap. copy()Returns a deep copy of the receiver; usesclone()and casts the result.Methods in cern.colt.map with parameters of type AbstractIntDoubleMap Modifier and Type Method Description voidAbstractIntDoubleMap. assign(AbstractIntDoubleMap other)Clears the receiver, then adds all (key,value) pairs of othervalues to it.voidOpenIntDoubleHashMap. 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 AbstractIntDoubleMap Modifier and Type Field Description protected AbstractIntDoubleMapSelectedSparseDoubleMatrix1D. elementsprotected AbstractIntDoubleMapSelectedSparseDoubleMatrix2D. elementsprotected AbstractIntDoubleMapSelectedSparseDoubleMatrix3D. elementsThe elements of this matrix.protected AbstractIntDoubleMapSparseDoubleMatrix1D. elementsprotected AbstractIntDoubleMapSparseDoubleMatrix2D. elementsprotected AbstractIntDoubleMapSparseDoubleMatrix3D. elementsConstructors in cern.colt.matrix.impl with parameters of type AbstractIntDoubleMap Constructor Description SelectedSparseDoubleMatrix1D(int size, AbstractIntDoubleMap elements, int zero, int stride, int[] offsets, int offset)Constructs a matrix view with the given parameters.SelectedSparseDoubleMatrix1D(AbstractIntDoubleMap elements, int[] offsets)Constructs a matrix view with the given parameters.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.SelectedSparseDoubleMatrix2D(AbstractIntDoubleMap elements, int[] rowOffsets, int[] columnOffsets, int offset)Constructs a matrix view with the given parameters.SelectedSparseDoubleMatrix3D(AbstractIntDoubleMap elements, int[] sliceOffsets, int[] rowOffsets, int[] columnOffsets, int offset)Constructs a matrix view with the given parameters.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.
-