Uses of Class
org.la4j.matrix.MatrixFactory
-
Packages that use MatrixFactory Package Description org.la4j org.la4j.matrix.dense org.la4j.matrix.sparse -
-
Uses of MatrixFactory in org.la4j
Fields in org.la4j declared as MatrixFactory Modifier and Type Field Description static MatrixFactory<Basic1DMatrix>Matrices. BASIC_1DA matrix factory that produces zeroBasic1DMatrix.static MatrixFactory<Basic2DMatrix>Matrices. BASIC_2DA matrix factory that produces zeroBasic2DMatrix.static MatrixFactory<CCSMatrix>Matrices. CCSA matrix factory that produces zeroCCSMatrix.static MatrixFactory<?>[]Matrices. CONVERTERSstatic MatrixFactory<CRSMatrix>Matrices. CRSA matrix factory that produces zeroCRSMatrix.static MatrixFactory<Basic2DMatrix>Matrices. DENSEA default matrix factory for dense matrices.static MatrixFactory<CRSMatrix>Matrices. SPARSEA default factory for sparse matrices.static MatrixFactory<CCSMatrix>Matrices. SPARSE_COLUMN_MAJORA default factory for sparse column-major matrices.static MatrixFactory<CRSMatrix>Matrices. SPARSE_ROW_MAJORA default factory for sparse row-major matrices.Methods in org.la4j with parameters of type MatrixFactory Modifier and Type Method Description <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 MatrixFactory Modifier and Type Method Description <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 MatrixFactory Modifier and Type Method Description <T extends Matrix>
TCCSMatrix. to(MatrixFactory<T> factory)<T extends Matrix>
TCRSMatrix. to(MatrixFactory<T> factory)
-