Uses of Class
org.la4j.matrix.RowMajorSparseMatrix
-
Packages that use RowMajorSparseMatrix Package Description org.la4j org.la4j.matrix org.la4j.matrix.sparse org.la4j.operation org.la4j.operation.inplace org.la4j.operation.ooplace -
-
Uses of RowMajorSparseMatrix in org.la4j
Methods in org.la4j that return RowMajorSparseMatrix Modifier and Type Method Description RowMajorSparseMatrix
Matrix. toRowMajorSparseMatrix()
Converts this matrix into a row-major sparse matrix. -
Uses of RowMajorSparseMatrix in org.la4j.matrix
Methods in org.la4j.matrix that return RowMajorSparseMatrix Modifier and Type Method Description static RowMajorSparseMatrix
RowMajorSparseMatrix. block(Matrix a, Matrix b, Matrix c, Matrix d)
static RowMajorSparseMatrix
RowMajorSparseMatrix. diagonal(int size, double diagonal)
Creates a diagonalRowMajorSparseMatrix
of the givensize
whose diagonal elements are equal todiagonal
.static RowMajorSparseMatrix
RowMajorSparseMatrix. from1DArray(int rows, int columns, double[] array)
Creates a newRowMajorSparseMatrix
from the given 1Darray
with compressing (copying) the underlying array.static RowMajorSparseMatrix
RowMajorSparseMatrix. from2DArray(double[][] array)
Creates a newRowMajorSparseMatrix
from the given 2Darray
with compressing (copying) the underlying array.static RowMajorSparseMatrix
RowMajorSparseMatrix. fromCSV(java.lang.String csv)
ParsesRowMajorSparseMatrix
from the given CSV string.static RowMajorSparseMatrix
RowMajorSparseMatrix. fromMatrixMarket(java.lang.String mm)
ParsesRowMajorSparseMatrix
from the given Matrix Market string.static RowMajorSparseMatrix
RowMajorSparseMatrix. identity(int size)
Creates an identityRowMajorSparseMatrix
of the givensize
.static RowMajorSparseMatrix
RowMajorSparseMatrix. random(int rows, int columns, double density, java.util.Random random)
static RowMajorSparseMatrix
RowMajorSparseMatrix. randomSymmetric(int size, double density, java.util.Random random)
Creates a random symmetricRowMajorSparseMatrix
of the givensize
.static RowMajorSparseMatrix
RowMajorSparseMatrix. zero(int rows, int columns)
static RowMajorSparseMatrix
RowMajorSparseMatrix. zero(int rows, int columns, int capacity)
-
Uses of RowMajorSparseMatrix in org.la4j.matrix.sparse
Subclasses of RowMajorSparseMatrix in org.la4j.matrix.sparse Modifier and Type Class Description class
CRSMatrix
This is a CRS (Compressed Row Storage) matrix class. -
Uses of RowMajorSparseMatrix in org.la4j.operation
-
Uses of RowMajorSparseMatrix in org.la4j.operation.inplace
Methods in org.la4j.operation.inplace with parameters of type RowMajorSparseMatrix Modifier and Type Method Description Matrix
InPlaceCopyMatrixToMatrix. apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b)
Matrix
InPlaceCopyMatrixToMatrix. apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b)
-
Uses of RowMajorSparseMatrix in org.la4j.operation.ooplace
-