Uses of Class
cern.colt.matrix.impl.AbstractMatrix2D
-
Packages that use AbstractMatrix2D Package Description 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.doublealgo Double matrix algorithms such as print formatting, sorting, partitioning and statistics.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.cern.colt.matrix.objectalgo Object matrix algorithms such as print formatting, sorting, partitioning and statistics. -
-
Uses of AbstractMatrix2D in cern.colt.matrix
Subclasses of AbstractMatrix2D in cern.colt.matrix Modifier and Type Class Description classDoubleMatrix2DAbstract base class for 2-d matrices holding double elements.classObjectMatrix2DAbstract base class for 2-d matrices holding Object elements. -
Uses of AbstractMatrix2D in cern.colt.matrix.doublealgo
Methods in cern.colt.matrix.doublealgo with parameters of type AbstractMatrix2D Modifier and Type Method Description protected java.lang.String[][]Formatter. format(AbstractMatrix2D matrix)Returns a string representations of all cells; no alignment considered.protected java.lang.StringFormatter. toString(AbstractMatrix2D matrix)Returns a string representation of the given matrix. -
Uses of AbstractMatrix2D in cern.colt.matrix.impl
Subclasses of AbstractMatrix2D in cern.colt.matrix.impl Modifier and Type Class Description classDenseDoubleMatrix2DDense 2-d matrix holding double elements.classDenseObjectMatrix2DDense 2-d matrix holding Object elements.classRCDoubleMatrix2DSparse row-compressed 2-d matrix holding double elements.(package private) classRCMDoubleMatrix2DSparse row-compressed-modified 2-d matrix holding double elements.(package private) classSelectedDenseDoubleMatrix2DSelection view on dense 2-d matrices holding double elements.(package private) classSelectedDenseObjectMatrix2DSelection view on dense 2-d matrices holding Object elements.(package private) classSelectedSparseDoubleMatrix2DSelection view on sparse 2-d matrices holding double elements.(package private) classSelectedSparseObjectMatrix2DSelection view on sparse 2-d matrices holding Object elements.classSparseDoubleMatrix2DSparse hashed 2-d matrix holding double elements.classSparseObjectMatrix2DSparse hashed 2-d matrix holding Object elements.(package private) classTridiagonalDoubleMatrix2DTridiagonal 2-d matrix holding double elements.(package private) classWrapperDoubleMatrix2D2-d matrix holding double elements; either a view wrapping another matrix or a matrix whose views are wrappers.Methods in cern.colt.matrix.impl that return AbstractMatrix2D Modifier and Type Method Description protected AbstractMatrix2DAbstractMatrix2D. vColumnFlip()Self modifying version of viewColumnFlip().protected AbstractMatrix2DAbstractMatrix2D. vDice()Self modifying version of viewDice().protected AbstractMatrix2DSelectedDenseDoubleMatrix2D. vDice()Self modifying version of viewDice().protected AbstractMatrix2DSelectedDenseObjectMatrix2D. vDice()Self modifying version of viewDice().protected AbstractMatrix2DSelectedSparseDoubleMatrix2D. vDice()Self modifying version of viewDice().protected AbstractMatrix2DSelectedSparseObjectMatrix2D. vDice()Self modifying version of viewDice().protected AbstractMatrix2DAbstractMatrix2D. vPart(int row, int column, int height, int width)Self modifying version of viewPart().protected AbstractMatrix2DAbstractMatrix2D. vRowFlip()Self modifying version of viewRowFlip().protected AbstractMatrix2DAbstractMatrix2D. vStrides(int rowStride, int columnStride)Self modifying version of viewStrides().Methods in cern.colt.matrix.impl with parameters of type AbstractMatrix2D Modifier and Type Method Description voidAbstractMatrix2D. checkShape(AbstractMatrix2D B)Sanity check for operations requiring two matrices with the same number of columns and rows.voidAbstractMatrix2D. checkShape(AbstractMatrix2D B, AbstractMatrix2D C)Sanity check for operations requiring matrices with the same number of columns and rows.protected abstract java.lang.String[][]AbstractFormatter. format(AbstractMatrix2D matrix)Returns a string representations of all cells; no alignment considered.static java.lang.StringAbstractFormatter. shape(AbstractMatrix2D matrix)Returns a short string representation describing the shape of the matrix.protected java.lang.StringAbstractFormatter. toString(AbstractMatrix2D matrix)Returns a string representation of the given matrix. -
Uses of AbstractMatrix2D in cern.colt.matrix.objectalgo
Methods in cern.colt.matrix.objectalgo with parameters of type AbstractMatrix2D Modifier and Type Method Description protected java.lang.String[][]Formatter. format(AbstractMatrix2D matrix)Returns a string representations of all cells; no alignment considered.protected java.lang.StringFormatter. toString(AbstractMatrix2D matrix)Returns a string representation of the given matrix.
-