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