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_1DA matrix factory that produces zeroBasic1DMatrix.static final MatrixFactory<Basic2DMatrix> Matrices.BASIC_2DA matrix factory that produces zeroBasic2DMatrix.static final MatrixFactory<CCSMatrix> Matrices.CCSA matrix factory that produces zeroCCSMatrix.static final MatrixFactory<?>[]Matrices.CONVERTERSstatic final MatrixFactory<CRSMatrix> Matrices.CRSA matrix factory that produces zeroCRSMatrix.static final MatrixFactory<Basic2DMatrix> Matrices.DENSEA default matrix factory for dense matrices.static final MatrixFactory<CRSMatrix> Matrices.SPARSEA default factory for sparse matrices.static final MatrixFactory<CCSMatrix> Matrices.SPARSE_COLUMN_MAJORA default factory for sparse column-major matrices.static final MatrixFactory<CRSMatrix> Matrices.SPARSE_ROW_MAJORA 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)