Uses of Class
org.la4j.matrix.ColumnMajorSparseMatrix
Packages that use ColumnMajorSparseMatrix
Package
Description
-
Uses of ColumnMajorSparseMatrix in org.la4j
Methods in org.la4j that return ColumnMajorSparseMatrixModifier and TypeMethodDescriptionMatrix.toColumnMajorSparseMatrix()Converts this matrix into a column-major sparse matrix. -
Uses of ColumnMajorSparseMatrix in org.la4j.matrix
Methods in org.la4j.matrix that return ColumnMajorSparseMatrixModifier and TypeMethodDescriptionstatic ColumnMajorSparseMatrixstatic ColumnMajorSparseMatrixColumnMajorSparseMatrix.diagonal(int size, double diagonal) Creates a diagonalColumnMajorSparseMatrixof the givensizewhose diagonal elements are equal todiagonal.static ColumnMajorSparseMatrixColumnMajorSparseMatrix.from1DArray(int rows, int columns, double[] array) Creates a newColumnMajorSparseMatrixfrom the given 1Darraywith compressing (copying) the underlying array.static ColumnMajorSparseMatrixColumnMajorSparseMatrix.from2DArray(double[][] array) Creates a newColumnMajorSparseMatrixfrom the given 2Darraywith compressing (copying) the underlying array.static ColumnMajorSparseMatrixParsesColumnMajorSparseMatrixfrom the given CSV string.static ColumnMajorSparseMatrixColumnMajorSparseMatrix.fromMatrixMarket(String mm) ParsesColumnMajorSparseMatrixfrom the given Matrix Market string.static ColumnMajorSparseMatrixColumnMajorSparseMatrix.identity(int size) Creates an identityColumnMajorSparseMatrixof the givensize.static ColumnMajorSparseMatrixstatic ColumnMajorSparseMatrixColumnMajorSparseMatrix.randomSymmetric(int size, double density, Random random) Creates a random symmetricColumnMajorSparseMatrixof the givensize.static ColumnMajorSparseMatrixColumnMajorSparseMatrix.zero(int rows, int columns) static ColumnMajorSparseMatrixColumnMajorSparseMatrix.zero(int rows, int columns, int capacity) -
Uses of ColumnMajorSparseMatrix in org.la4j.matrix.sparse
Subclasses of ColumnMajorSparseMatrix in org.la4j.matrix.sparseModifier and TypeClassDescriptionclassThis is a CCS (Compressed Column Storage) matrix class. -
Uses of ColumnMajorSparseMatrix in org.la4j.operation
Methods in org.la4j.operation with parameters of type ColumnMajorSparseMatrixModifier and TypeMethodDescriptionCommonMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, ColumnMajorSparseMatrix b) CommonMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, DenseMatrix b) CommonMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) CommonMatrixMatrixOperation.apply(DenseMatrix a, ColumnMajorSparseMatrix b) CommonMatrixMatrixOperation.apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) CommonMatrixOperation.apply(ColumnMajorSparseMatrix a) abstract RMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, ColumnMajorSparseMatrix b) abstract RMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, DenseMatrix b) abstract RMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) abstract RMatrixMatrixOperation.apply(DenseMatrix a, ColumnMajorSparseMatrix b) abstract RMatrixMatrixOperation.apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) abstract RMatrixOperation.apply(ColumnMajorSparseMatrix a) abstract RMatrixVectorOperation.apply(ColumnMajorSparseMatrix a, DenseVector b) abstract RMatrixVectorOperation.apply(ColumnMajorSparseMatrix a, SparseVector b) SimpleMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, ColumnMajorSparseMatrix b) SimpleMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, DenseMatrix b) SimpleMatrixMatrixOperation.apply(DenseMatrix a, ColumnMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, ColumnMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, DenseMatrix b) SymmetricMatrixMatrixOperation.apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply(DenseMatrix a, ColumnMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) abstract RVectorMatrixOperation.apply(DenseVector a, ColumnMajorSparseMatrix b) abstract RVectorMatrixOperation.apply(SparseVector a, ColumnMajorSparseMatrix b) abstract RSymmetricMatrixMatrixOperation.applySymmetric(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) MatrixMatrixOperation.partiallyApply(ColumnMajorSparseMatrix a) MatrixVectorOperation.partiallyApply(ColumnMajorSparseMatrix a) -
Uses of ColumnMajorSparseMatrix in org.la4j.operation.inplace
Methods in org.la4j.operation.inplace with parameters of type ColumnMajorSparseMatrixModifier and TypeMethodDescriptionInPlaceCopyMatrixToMatrix.apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) InPlaceCopyMatrixToMatrix.apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) -
Uses of ColumnMajorSparseMatrix in org.la4j.operation.ooplace
Methods in org.la4j.operation.ooplace with parameters of type ColumnMajorSparseMatrixModifier and TypeMethodDescriptionOoPlaceMatricesMultiplication.apply(ColumnMajorSparseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply(ColumnMajorSparseMatrix a, DenseMatrix b) OoPlaceMatricesMultiplication.apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply(DenseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatricesSubtraction.apply(ColumnMajorSparseMatrix a, RowMajorSparseMatrix b) OoPlaceMatricesSubtraction.apply(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatrixByItsTransposeMultiplication.apply(ColumnMajorSparseMatrix a) OoPlaceMatrixByVectorMultiplication.apply(ColumnMajorSparseMatrix a, DenseVector b) OoPlaceMatrixByVectorMultiplication.apply(ColumnMajorSparseMatrix a, SparseVector b) OoPlaceVectorByMatrixMultiplication.apply(DenseVector a, ColumnMajorSparseMatrix b) OoPlaceVectorByMatrixMultiplication.apply(SparseVector a, ColumnMajorSparseMatrix b) OoPlaceMatricesAddition.applySymmetric(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatrixHadamardProduct.applySymmetric(RowMajorSparseMatrix a, ColumnMajorSparseMatrix b)