Uses of Class
cern.colt.matrix.impl.AbstractMatrix1D
-
Packages that use AbstractMatrix1D 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 AbstractMatrix1D in cern.colt.matrix
Subclasses of AbstractMatrix1D in cern.colt.matrix Modifier and Type Class Description class
DoubleMatrix1D
Abstract base class for 1-d matrices (aka vectors) holding double elements.class
ObjectMatrix1D
Abstract base class for 1-d matrices (aka vectors) holding Object elements. -
Uses of AbstractMatrix1D in cern.colt.matrix.doublealgo
Methods in cern.colt.matrix.doublealgo with parameters of type AbstractMatrix1D Modifier and Type Method Description protected java.lang.String
Formatter. form(AbstractMatrix1D matrix, int index, Former formatter)
Converts a given cell to a String; no alignment considered. -
Uses of AbstractMatrix1D in cern.colt.matrix.impl
Subclasses of AbstractMatrix1D in cern.colt.matrix.impl Modifier and Type Class Description (package private) class
DelegateDoubleMatrix1D
1-d matrix holding double elements; either a view wrapping another 2-d matrix and therefore delegating calls to it.class
DenseDoubleMatrix1D
Dense 1-d matrix (aka vector) holding double elements.class
DenseObjectMatrix1D
Dense 1-d matrix (aka vector) holding Object elements.(package private) class
SelectedDenseDoubleMatrix1D
Selection view on dense 1-d matrices holding double elements.(package private) class
SelectedDenseObjectMatrix1D
Selection view on dense 1-d matrices holding Object elements.(package private) class
SelectedSparseDoubleMatrix1D
Selection view on sparse 1-d matrices holding double elements.(package private) class
SelectedSparseObjectMatrix1D
Selection view on sparse 1-d matrices holding Object elements.class
SparseDoubleMatrix1D
Sparse hashed 1-d matrix (aka vector) holding double elements.class
SparseObjectMatrix1D
Sparse hashed 1-d matrix (aka vector) holding Object elements.(package private) class
WrapperDoubleMatrix1D
1-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 AbstractMatrix1D Modifier and Type Method Description protected AbstractMatrix1D
AbstractMatrix1D. vFlip()
Self modifying version of viewFlip().protected AbstractMatrix1D
AbstractMatrix1D. vPart(int index, int width)
Self modifying version of viewPart().protected AbstractMatrix1D
AbstractMatrix1D. vStrides(int stride)
Self modifying version of viewStrides().Methods in cern.colt.matrix.impl with parameters of type AbstractMatrix1D Modifier and Type Method Description void
AbstractMatrix1D. checkSize(AbstractMatrix1D B)
Sanity check for operations requiring two matrices with the same size.protected abstract java.lang.String
AbstractFormatter. form(AbstractMatrix1D matrix, int index, Former formatter)
Converts a given cell to a String; no alignment considered.protected java.lang.String[]
AbstractFormatter. formatRow(AbstractMatrix1D vector)
Returns a string representations of all cells; no alignment considered.static java.lang.String
AbstractFormatter. shape(AbstractMatrix1D matrix)
Returns a short string representation describing the shape of the matrix. -
Uses of AbstractMatrix1D in cern.colt.matrix.objectalgo
Methods in cern.colt.matrix.objectalgo with parameters of type AbstractMatrix1D Modifier and Type Method Description protected java.lang.String
Formatter. form(AbstractMatrix1D matrix, int index, Former formatter)
Converts a given cell to a String; no alignment considered.
-