Uses of Class
org.la4j.matrix.MatrixFactory
Packages that use MatrixFactory
-
Uses of MatrixFactory in org.la4j
Fields in org.la4j declared as MatrixFactoryModifier and TypeFieldDescriptionstatic final MatrixFactory
<Basic1DMatrix> Matrices.BASIC_1D
A matrix factory that produces zeroBasic1DMatrix
.static final MatrixFactory
<Basic2DMatrix> Matrices.BASIC_2D
A matrix factory that produces zeroBasic2DMatrix
.static final MatrixFactory
<CCSMatrix> Matrices.CCS
A matrix factory that produces zeroCCSMatrix
.static final MatrixFactory<?>[]
Matrices.CONVERTERS
static final MatrixFactory
<CRSMatrix> Matrices.CRS
A matrix factory that produces zeroCRSMatrix
.static final MatrixFactory
<Basic2DMatrix> Matrices.DENSE
A default matrix factory for dense matrices.static final MatrixFactory
<CRSMatrix> Matrices.SPARSE
A default factory for sparse matrices.static final MatrixFactory
<CCSMatrix> Matrices.SPARSE_COLUMN_MAJOR
A default factory for sparse column-major matrices.static final MatrixFactory
<CRSMatrix> Matrices.SPARSE_ROW_MAJOR
A default factory for sparse row-major matrices.Methods in org.la4j with parameters of type MatrixFactoryModifier and TypeMethodDescription<T extends Matrix>
TMatrix.to
(MatrixFactory<T> factory) Converts this matrix using the givenfactory
. -
Uses of MatrixFactory in org.la4j.matrix.dense
Methods in org.la4j.matrix.dense with parameters of type MatrixFactoryModifier and TypeMethodDescription<T extends Matrix>
TBasic1DMatrix.to
(MatrixFactory<T> factory) <T extends Matrix>
TBasic2DMatrix.to
(MatrixFactory<T> factory) -
Uses of MatrixFactory in org.la4j.matrix.sparse
Methods in org.la4j.matrix.sparse with parameters of type MatrixFactoryModifier and TypeMethodDescription<T extends Matrix>
TCCSMatrix.to
(MatrixFactory<T> factory) <T extends Matrix>
TCRSMatrix.to
(MatrixFactory<T> factory)