Uses of Class
org.la4j.matrix.RowMajorSparseMatrix
Packages that use RowMajorSparseMatrix
Package
Description
-
Uses of RowMajorSparseMatrix in org.la4j
Methods in org.la4j that return RowMajorSparseMatrixModifier and TypeMethodDescriptionMatrix.toRowMajorSparseMatrix()
Converts this matrix into a row-major sparse matrix. -
Uses of RowMajorSparseMatrix in org.la4j.matrix
Methods in org.la4j.matrix that return RowMajorSparseMatrixModifier and TypeMethodDescriptionstatic RowMajorSparseMatrix
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
ParsesRowMajorSparseMatrix
from the given CSV string.static RowMajorSparseMatrix
RowMajorSparseMatrix.fromMatrixMarket
(String mm) ParsesRowMajorSparseMatrix
from the given Matrix Market string.static RowMajorSparseMatrix
RowMajorSparseMatrix.identity
(int size) Creates an identityRowMajorSparseMatrix
of the givensize
.static RowMajorSparseMatrix
static RowMajorSparseMatrix
RowMajorSparseMatrix.randomSymmetric
(int size, double density, 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.sparseModifier and TypeClassDescriptionclass
This is a CRS (Compressed Row Storage) matrix class. -
Uses of RowMajorSparseMatrix in org.la4j.operation
Methods in org.la4j.operation with parameters of type RowMajorSparseMatrixModifier and TypeMethodDescriptionCommonMatrixMatrixOperation.apply
(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) CommonMatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) CommonMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) CommonMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) CommonMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, RowMajorSparseMatrix b) CommonMatrixOperation.apply
(RowMajorSparseMatrix a) abstract R
MatrixMatrixOperation.apply
(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) abstract R
MatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) abstract R
MatrixMatrixOperation.apply
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) abstract R
MatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) abstract R
MatrixMatrixOperation.apply
(RowMajorSparseMatrix a, RowMajorSparseMatrix b) abstract R
MatrixOperation.apply
(RowMajorSparseMatrix a) abstract R
MatrixVectorOperation.apply
(RowMajorSparseMatrix a, DenseVector b) abstract R
MatrixVectorOperation.apply
(RowMajorSparseMatrix a, SparseVector b) SimpleMatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) SimpleMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) SimpleMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, RowMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply
(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) SymmetricMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, RowMajorSparseMatrix b) abstract R
VectorMatrixOperation.apply
(DenseVector a, RowMajorSparseMatrix b) abstract R
VectorMatrixOperation.apply
(SparseVector a, RowMajorSparseMatrix b) abstract R
SymmetricMatrixMatrixOperation.applySymmetric
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) MatrixMatrixOperation.partiallyApply
(RowMajorSparseMatrix a) MatrixVectorOperation.partiallyApply
(RowMajorSparseMatrix a) -
Uses of RowMajorSparseMatrix in org.la4j.operation.inplace
Methods in org.la4j.operation.inplace with parameters of type RowMajorSparseMatrixModifier and TypeMethodDescriptionInPlaceCopyMatrixToMatrix.apply
(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) InPlaceCopyMatrixToMatrix.apply
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) -
Uses of RowMajorSparseMatrix in org.la4j.operation.ooplace
Methods in org.la4j.operation.ooplace with parameters of type RowMajorSparseMatrixModifier and TypeMethodDescriptionOoPlaceMatricesMultiplication.apply
(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply
(DenseMatrix a, RowMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply
(RowMajorSparseMatrix a, DenseMatrix b) OoPlaceMatricesMultiplication.apply
(RowMajorSparseMatrix a, RowMajorSparseMatrix b) OoPlaceMatricesSubtraction.apply
(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) OoPlaceMatricesSubtraction.apply
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatrixByItsTransposeMultiplication.apply
(RowMajorSparseMatrix a) OoPlaceMatrixByVectorMultiplication.apply
(RowMajorSparseMatrix a, DenseVector b) OoPlaceMatrixByVectorMultiplication.apply
(RowMajorSparseMatrix a, SparseVector b) OoPlaceVectorByMatrixMultiplication.apply
(DenseVector a, RowMajorSparseMatrix b) OoPlaceVectorByMatrixMultiplication.apply
(SparseVector a, RowMajorSparseMatrix b) OoPlaceMatricesAddition.applySymmetric
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatrixHadamardProduct.applySymmetric
(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b)