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 RowMajorSparseMatrixMatrix. 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 RowMajorSparseMatrixRowMajorSparseMatrix. block(Matrix a, Matrix b, Matrix c, Matrix d)static RowMajorSparseMatrixRowMajorSparseMatrix. diagonal(int size, double diagonal)Creates a diagonalRowMajorSparseMatrixof the givensizewhose diagonal elements are equal todiagonal.static RowMajorSparseMatrixRowMajorSparseMatrix. from1DArray(int rows, int columns, double[] array)Creates a newRowMajorSparseMatrixfrom the given 1Darraywith compressing (copying) the underlying array.static RowMajorSparseMatrixRowMajorSparseMatrix. from2DArray(double[][] array)Creates a newRowMajorSparseMatrixfrom the given 2Darraywith compressing (copying) the underlying array.static RowMajorSparseMatrixRowMajorSparseMatrix. fromCSV(java.lang.String csv)ParsesRowMajorSparseMatrixfrom the given CSV string.static RowMajorSparseMatrixRowMajorSparseMatrix. fromMatrixMarket(java.lang.String mm)ParsesRowMajorSparseMatrixfrom the given Matrix Market string.static RowMajorSparseMatrixRowMajorSparseMatrix. identity(int size)Creates an identityRowMajorSparseMatrixof the givensize.static RowMajorSparseMatrixRowMajorSparseMatrix. random(int rows, int columns, double density, java.util.Random random)static RowMajorSparseMatrixRowMajorSparseMatrix. randomSymmetric(int size, double density, java.util.Random random)Creates a random symmetricRowMajorSparseMatrixof the givensize.static RowMajorSparseMatrixRowMajorSparseMatrix. zero(int rows, int columns)static RowMajorSparseMatrixRowMajorSparseMatrix. 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 classCRSMatrixThis 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 MatrixInPlaceCopyMatrixToMatrix. apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b)MatrixInPlaceCopyMatrixToMatrix. apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) -
Uses of RowMajorSparseMatrix in org.la4j.operation.ooplace
-