Colt 1.2.0

Uses of Class
cern.colt.matrix.impl.AbstractMatrix

Packages that use AbstractMatrix
cern.colt.matrix Matrix interfaces and factories; efficient and flexible dense and sparse 1, 2, 3 and d-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.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
 

Uses of AbstractMatrix in cern.colt.matrix
 

Subclasses of AbstractMatrix in cern.colt.matrix
 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.
 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.impl
 

Subclasses of AbstractMatrix in cern.colt.matrix.impl
 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.
 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 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 RCDoubleMatrix2D
          Sparse row-compressed 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 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.
(package private)  class cern.colt.matrix.impl.WrapperDoubleMatrix2D
          2-d matrix holding double elements; either a view wrapping another matrix or a matrix whose views are wrappers.
 


Colt 1.2.0

Jump to the Colt Homepage