Parallel Colt 0.9.4

Uses of Class
cern.colt.matrix.AbstractMatrix

Packages that use AbstractMatrix
cern.colt.matrix Matrix interfaces and factories; efficient and flexible dense and sparse 1, 2, 3-dimensional matrices holding objects or primitive data types such as int, double, etc; Templated, fixed sized (not dynamically resizable); Also known as multi-dimensional arrays or Data Cubes
cern.colt.matrix.tdcomplex Matrix interfaces and factories holding elements of dcomplex data type. 
cern.colt.matrix.tdcomplex.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of dcomplex data type. 
cern.colt.matrix.tdouble Matrix interfaces and factories holding elements of double data type. 
cern.colt.matrix.tdouble.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of double data type. 
cern.colt.matrix.tfcomplex Matrix interfaces and factories holding elements of fcomplex data type. 
cern.colt.matrix.tfcomplex.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of fcomplex data type. 
cern.colt.matrix.tfloat Matrix interfaces and factories holding elements of float data type. 
cern.colt.matrix.tfloat.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of float data type. 
cern.colt.matrix.tint Matrix interfaces and factories holding elements of int data type. 
cern.colt.matrix.tint.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of int data type. 
cern.colt.matrix.tlong Matrix interfaces and factories holding elements of long data type. 
cern.colt.matrix.tlong.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of long data type. 
cern.colt.matrix.tobject Matrix interfaces and factories holding elements of Object data type. 
cern.colt.matrix.tobject.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of Object data type. 
 

Uses of AbstractMatrix in cern.colt.matrix
 

Subclasses of AbstractMatrix in cern.colt.matrix
 class AbstractMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding objects or primitive data types such as int, double, etc.
 class AbstractMatrix2D
          Abstract base class for 2-d matrices holding objects or primitive data types such as int, double, etc.
 class AbstractMatrix3D
          Abstract base class for 3-d matrices holding objects or primitive data types such as int, double, etc.
 

Uses of AbstractMatrix in cern.colt.matrix.tdcomplex
 

Subclasses of AbstractMatrix in cern.colt.matrix.tdcomplex
 class DComplexMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding complex elements.
 class DComplexMatrix2D
          Abstract base class for 2-d matrices holding complex elements.
 class DComplexMatrix3D
          Abstract base class for 3-d matrices holding complex elements.
 

Uses of AbstractMatrix in cern.colt.matrix.tdcomplex.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.tdcomplex.impl
 class DenseColumnDComplexMatrix2D
          Dense 2-d matrix holding complex elements.
 class DenseDComplexMatrix1D
          Dense 1-d matrix (aka vector) holding complex elements.
 class DenseDComplexMatrix2D
          Dense 2-d matrix holding complex elements.
 class DenseDComplexMatrix3D
          Dense 3-d matrix holding complex elements.
 class DenseLargeDComplexMatrix2D
          Dense 2-d matrix holding complex elements.
Implementation:
 class DenseLargeDComplexMatrix3D
          Dense 3-d matrix holding complex elements.
Implementation:
 class DiagonalDComplexMatrix2D
          Diagonal 2-d matrix holding complex elements.
 class SparseCCDComplexMatrix2D
          Sparse column-compressed 2-d matrix holding complex elements.
 class SparseCCMDComplexMatrix2D
          Sparse column-compressed-modified 2-d matrix holding complex elements.
 class SparseDComplexMatrix1D
          Sparse hashed 1-d matrix (aka vector) holding complex elements.
 class SparseDComplexMatrix2D
          Sparse hashed 2-d matrix holding complex elements.
 class SparseDComplexMatrix3D
          Sparse hashed 3-d matrix holding complex elements.
 class SparseRCDComplexMatrix2D
          Sparse row-compressed 2-d matrix holding complex elements.
 class SparseRCMDComplexMatrix2D
          Sparse row-compressed-modified 2-d matrix holding complex elements.
 class WrapperDComplexMatrix1D
          1-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperDComplexMatrix2D
          2-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperDComplexMatrix3D
          3-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 

Uses of AbstractMatrix in cern.colt.matrix.tdouble
 

Subclasses of AbstractMatrix in cern.colt.matrix.tdouble
 class DoubleMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding double elements.
 class DoubleMatrix2D
          Abstract base class for 2-d matrices holding double elements.
 class DoubleMatrix3D
          Abstract base class for 3-d matrices holding double elements.
 

Uses of AbstractMatrix in cern.colt.matrix.tdouble.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.tdouble.impl
 class DenseColumnDoubleMatrix2D
          Dense 2-d matrix holding double elements.
 class DenseDoubleMatrix1D
          Dense 1-d matrix (aka vector) holding double elements.
 class DenseDoubleMatrix2D
          Dense 2-d matrix holding double elements.
 class DenseDoubleMatrix3D
          Dense 3-d matrix holding double elements.
 class DenseLargeDoubleMatrix2D
          Dense 2-d matrix holding double elements.
 class DenseLargeDoubleMatrix3D
          Dense 3-d matrix holding double elements.
 class DiagonalDoubleMatrix2D
          Diagonal 2-d matrix holding double elements.
 class SparseCCDoubleMatrix2D
          Sparse column-compressed 2-d matrix holding double elements.
 class SparseCCMDoubleMatrix2D
          Sparse column-compressed-modified 2-d matrix holding double elements.
 class SparseDoubleMatrix1D
          Sparse hashed 1-d matrix (aka vector) holding double elements.
 class SparseDoubleMatrix2D
          Sparse hashed 2-d matrix holding double elements.
 class SparseDoubleMatrix3D
          Sparse hashed 3-d matrix holding double elements.
 class SparseRCDoubleMatrix2D
          Sparse row-compressed 2-d matrix holding double elements.
 class SparseRCMDoubleMatrix2D
          Sparse row-compressed-modified 2-d matrix holding double elements.
 class WrapperDoubleMatrix1D
          1-d matrix holding double elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperDoubleMatrix2D
          2-d matrix holding double elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperDoubleMatrix3D
          3-d matrix holding double elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 

Uses of AbstractMatrix in cern.colt.matrix.tfcomplex
 

Subclasses of AbstractMatrix in cern.colt.matrix.tfcomplex
 class FComplexMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding complex elements.
 class FComplexMatrix2D
          Abstract base class for 2-d matrices holding complex elements.
 class FComplexMatrix3D
          Abstract base class for 3-d matrices holding complex elements.
 

Uses of AbstractMatrix in cern.colt.matrix.tfcomplex.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.tfcomplex.impl
 class DenseColumnFComplexMatrix2D
          Dense 2-d matrix holding complex elements.
 class DenseFComplexMatrix1D
          Dense 1-d matrix (aka vector) holding complex elements.
 class DenseFComplexMatrix2D
          Dense 2-d matrix holding complex elements.
 class DenseFComplexMatrix3D
          Dense 3-d matrix holding complex elements.
 class DenseLargeFComplexMatrix2D
          Dense 2-d matrix holding complex elements.
Implementation:
 class DenseLargeFComplexMatrix3D
          Dense 3-d matrix holding complex elements.
Implementation:
 class DiagonalFComplexMatrix2D
          Diagonal 2-d matrix holding complex elements.
 class SparseCCFComplexMatrix2D
          Sparse column-compressed 2-d matrix holding complex elements.
 class SparseCCMFComplexMatrix2D
          Sparse column-compressed-modified 2-d matrix holding complex elements.
 class SparseFComplexMatrix1D
          Sparse hashed 1-d matrix (aka vector) holding complex elements.
 class SparseFComplexMatrix2D
          Sparse hashed 2-d matrix holding complex elements.
 class SparseFComplexMatrix3D
          Sparse hashed 3-d matrix holding complex elements.
 class SparseRCFComplexMatrix2D
          Sparse row-compressed 2-d matrix holding complex elements.
 class SparseRCMFComplexMatrix2D
          Sparse row-compressed-modified 2-d matrix holding complex elements.
 class WrapperFComplexMatrix1D
          1-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperFComplexMatrix2D
          2-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperFComplexMatrix3D
          3-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 

Uses of AbstractMatrix in cern.colt.matrix.tfloat
 

Subclasses of AbstractMatrix in cern.colt.matrix.tfloat
 class FloatMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding float elements.
 class FloatMatrix2D
          Abstract base class for 2-d matrices holding float elements.
 class FloatMatrix3D
          Abstract base class for 3-d matrices holding float elements.
 

Uses of AbstractMatrix in cern.colt.matrix.tfloat.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.tfloat.impl
 class DenseColumnFloatMatrix2D
          Dense 2-d matrix holding float elements.
 class DenseFloatMatrix1D
          Dense 1-d matrix (aka vector) holding float elements.
 class DenseFloatMatrix2D
          Dense 2-d matrix holding float elements.
 class DenseFloatMatrix3D
          Dense 3-d matrix holding float elements.
 class DenseLargeFloatMatrix2D
          Dense 2-d matrix holding float elements.
 class DenseLargeFloatMatrix3D
          Dense 3-d matrix holding float elements.
 class DiagonalFloatMatrix2D
          Diagonal 2-d matrix holding float elements.
 class SparseCCFloatMatrix2D
          Sparse column-compressed 2-d matrix holding float elements.
 class SparseCCMFloatMatrix2D
          Sparse column-compressed-modified 2-d matrix holding float elements.
 class SparseFloatMatrix1D
          Sparse hashed 1-d matrix (aka vector) holding float elements.
 class SparseFloatMatrix2D
          Sparse hashed 2-d matrix holding float elements.
 class SparseFloatMatrix3D
          Sparse hashed 3-d matrix holding float elements.
 class SparseRCFloatMatrix2D
          Sparse row-compressed 2-d matrix holding float elements.
 class SparseRCMFloatMatrix2D
          Sparse row-compressed-modified 2-d matrix holding float elements.
 class WrapperFloatMatrix1D
          1-d matrix holding float elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperFloatMatrix2D
          2-d matrix holding float elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperFloatMatrix3D
          3-d matrix holding float elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 

Uses of AbstractMatrix in cern.colt.matrix.tint
 

Subclasses of AbstractMatrix in cern.colt.matrix.tint
 class IntMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding int elements.
 class IntMatrix2D
          Abstract base class for 2-d matrices holding int elements.
 class IntMatrix3D
          Abstract base class for 3-d matrices holding int elements.
 

Uses of AbstractMatrix in cern.colt.matrix.tint.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.tint.impl
 class DenseColumnIntMatrix2D
          Dense 2-d matrix holding int elements.
 class DenseIntMatrix1D
          Dense 1-d matrix (aka vector) holding int elements.
 class DenseIntMatrix2D
          Dense 2-d matrix holding int elements.
 class DenseIntMatrix3D
          Dense 3-d matrix holding int elements.
 class DenseLargeIntMatrix2D
          Dense 2-d matrix holding int elements.
 class DenseLargeIntMatrix3D
          Dense 3-d matrix holding int elements.
 class DiagonalIntMatrix2D
          Diagonal 2-d matrix holding int elements.
 class SparseCCIntMatrix2D
          Sparse column-compressed 2-d matrix holding int elements.
 class SparseCCMIntMatrix2D
          Sparse column-compressed-modified 2-d matrix holding int elements.
 class SparseIntMatrix1D
          Sparse hashed 1-d matrix (aka vector) holding int elements.
 class SparseIntMatrix2D
          Sparse hashed 2-d matrix holding int elements.
 class SparseIntMatrix3D
          Sparse hashed 3-d matrix holding int elements.
 class SparseRCIntMatrix2D
          Sparse row-compressed 2-d matrix holding int elements.
 class SparseRCMIntMatrix2D
          Sparse row-compressed-modified 2-d matrix holding int elements.
 class WrapperIntMatrix1D
          1-d matrix holding int elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperIntMatrix2D
          2-d matrix holding int elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperIntMatrix3D
          3-d matrix holding int elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 

Uses of AbstractMatrix in cern.colt.matrix.tlong
 

Subclasses of AbstractMatrix in cern.colt.matrix.tlong
 class LongMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding int elements.
 class LongMatrix2D
          Abstract base class for 2-d matrices holding int elements.
 class LongMatrix3D
          Abstract base class for 3-d matrices holding int elements.
 

Uses of AbstractMatrix in cern.colt.matrix.tlong.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.tlong.impl
 class DenseColumnLongMatrix2D
          Dense 2-d matrix holding long elements.
 class DenseLargeLongMatrix2D
          Dense 2-d matrix holding long elements.
 class DenseLargeLongMatrix3D
          Dense 3-d matrix holding long elements.
 class DenseLongMatrix1D
          Dense 1-d matrix (aka vector) holding int elements.
 class DenseLongMatrix2D
          Dense 2-d matrix holding int elements.
 class DenseLongMatrix3D
          Dense 3-d matrix holding int elements.
 class DiagonalLongMatrix2D
          Diagonal 2-d matrix holding long elements.
 class SparseCCLongMatrix2D
          Sparse column-compressed 2-d matrix holding long elements.
 class SparseCCMLongMatrix2D
          Sparse column-compressed-modified 2-d matrix holding long elements.
 class SparseLongMatrix1D
          Sparse hashed 1-d matrix (aka vector) holding long elements.
 class SparseLongMatrix2D
          Sparse hashed 2-d matrix holding long elements.
 class SparseLongMatrix3D
          Sparse hashed 3-d matrix holding long elements.
 class SparseRCLongMatrix2D
          Sparse row-compressed 2-d matrix holding long elements.
 class SparseRCMLongMatrix2D
          Sparse row-compressed-modified 2-d matrix holding long elements.
 class WrapperLongMatrix1D
          1-d matrix holding int elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperLongMatrix2D
          2-d matrix holding long elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperLongMatrix3D
          3-d matrix holding long elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 

Uses of AbstractMatrix in cern.colt.matrix.tobject
 

Subclasses of AbstractMatrix in cern.colt.matrix.tobject
 class ObjectMatrix1D
          Abstract base class for 1-d matrices (aka vectors) holding Object elements.
 class ObjectMatrix2D
          Abstract base class for 2-d matrices holding Object elements.
 class ObjectMatrix3D
          Abstract base class for 3-d matrices holding Object elements.
 

Uses of AbstractMatrix in cern.colt.matrix.tobject.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.tobject.impl
 class DenseColumnObjectMatrix2D
          Dense 2-d matrix holding Object elements.
 class DenseLargeObjectMatrix2D
          Dense 2-d matrix holding Object elements.
 class DenseLargeObjectMatrix3D
          Dense 3-d matrix holding Object elements.
 class DenseObjectMatrix1D
          Dense 1-d matrix (aka vector) holding Object elements.
 class DenseObjectMatrix2D
          Dense 2-d matrix holding Object elements.
 class DenseObjectMatrix3D
          Dense 3-d matrix holding Object elements.
 class DiagonalObjectMatrix2D
          Diagonal 2-d matrix holding Object elements.
 class SparseCCMObjectMatrix2D
          Sparse column-compressed-modified 2-d matrix holding Object elements.
 class SparseCCObjectMatrix2D
          Sparse column-compressed 2-d matrix holding Object elements.
 class SparseObjectMatrix1D
          Sparse hashed 1-d matrix (aka vector) holding Object elements.
 class SparseObjectMatrix2D
          Sparse hashed 2-d matrix holding Object elements.
 class SparseObjectMatrix3D
          Sparse hashed 3-d matrix holding Object elements.
 class SparseRCMObjectMatrix2D
          Sparse row-compressed-modified 2-d matrix holding Object elements.
 class SparseRCObjectMatrix2D
          Sparse row-compressed 2-d matrix holding Object elements.
 class WrapperObjectMatrix1D
          1-d matrix holding int elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperObjectMatrix2D
          2-d matrix holding Object elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 class WrapperObjectMatrix3D
          3-d matrix holding Object elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 


Parallel Colt 0.9.4

Jump to the Parallel Colt Homepage