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_1D
A matrix factory that produces zeroBasic1DMatrix
.static MatrixFactory<Basic2DMatrix>
Matrices. BASIC_2D
A matrix factory that produces zeroBasic2DMatrix
.static MatrixFactory<CCSMatrix>
Matrices. CCS
A matrix factory that produces zeroCCSMatrix
.static MatrixFactory<?>[]
Matrices. CONVERTERS
static MatrixFactory<CRSMatrix>
Matrices. CRS
A matrix factory that produces zeroCRSMatrix
.static MatrixFactory<Basic2DMatrix>
Matrices. DENSE
A default matrix factory for dense matrices.static MatrixFactory<CRSMatrix>
Matrices. SPARSE
A default factory for sparse matrices.static MatrixFactory<CCSMatrix>
Matrices. SPARSE_COLUMN_MAJOR
A default factory for sparse column-major matrices.static MatrixFactory<CRSMatrix>
Matrices. SPARSE_ROW_MAJOR
A 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)
-