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 RowMajorSparseMatrixstatic 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 RowMajorSparseMatrixParsesRowMajorSparseMatrixfrom the given CSV string.static RowMajorSparseMatrixRowMajorSparseMatrix.fromMatrixMarket(String mm) ParsesRowMajorSparseMatrixfrom the given Matrix Market string.static RowMajorSparseMatrixRowMajorSparseMatrix.identity(int size) Creates an identityRowMajorSparseMatrixof the givensize.static RowMajorSparseMatrixstatic RowMajorSparseMatrixRowMajorSparseMatrix.randomSymmetric(int size, double density, 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.sparseModifier and TypeClassDescriptionclassThis 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 RMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) abstract RMatrixMatrixOperation.apply(DenseMatrix a, RowMajorSparseMatrix b) abstract RMatrixMatrixOperation.apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) abstract RMatrixMatrixOperation.apply(RowMajorSparseMatrix a, DenseMatrix b) abstract RMatrixMatrixOperation.apply(RowMajorSparseMatrix a, RowMajorSparseMatrix b) abstract RMatrixOperation.apply(RowMajorSparseMatrix a) abstract RMatrixVectorOperation.apply(RowMajorSparseMatrix a, DenseVector b) abstract RMatrixVectorOperation.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 RVectorMatrixOperation.apply(DenseVector a, RowMajorSparseMatrix b) abstract RVectorMatrixOperation.apply(SparseVector a, RowMajorSparseMatrix b) abstract RSymmetricMatrixMatrixOperation.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)