Uses of Class
org.la4j.matrix.DenseMatrix
Packages that use DenseMatrix
Package
Description
-
Uses of DenseMatrix in org.la4j
Methods in org.la4j that return DenseMatrixModifier and TypeMethodDescriptionMatrix.toDenseMatrix()
Converts this matrix into a dense matrix. -
Uses of DenseMatrix in org.la4j.matrix
Methods in org.la4j.matrix that return DenseMatrixModifier and TypeMethodDescriptionstatic DenseMatrix
static DenseMatrix
DenseMatrix.constant
(int rows, int columns, double constant) Creates a constantDenseMatrix
of the given shape andvalue
.static DenseMatrix
DenseMatrix.diagonal
(int size, double diagonal) static DenseMatrix
DenseMatrix.from1DArray
(int rows, int columns, double[] array) Creates aDenseMatrix
of the given 1Darray
w/o copying the underlying array.static DenseMatrix
DenseMatrix.from2DArray
(double[][] array) Creates aDenseMatrix
of the given 2Darray
w/o copying the underlying array.static DenseMatrix
ParsesDenseMatrix
from the given CSV string.static DenseMatrix
DenseMatrix.fromMatrixMarket
(String mm) ParsesDenseMatrix
from the given Matrix Market string.static DenseMatrix
DenseMatrix.identity
(int size) Creates an identityDenseMatrix
of the givensize
.static DenseMatrix
static DenseMatrix
DenseMatrix.randomSymmetric
(int size, Random random) Creates a random symmetricDenseMatrix
of the givensize
.static DenseMatrix
DenseMatrix.unit
(int rows, int columns) static DenseMatrix
DenseMatrix.zero
(int rows, int columns) -
Uses of DenseMatrix in org.la4j.matrix.dense
Subclasses of DenseMatrix in org.la4j.matrix.dense -
Uses of DenseMatrix in org.la4j.operation
Methods in org.la4j.operation with parameters of type DenseMatrixModifier and TypeMethodDescriptionCommonMatrixMatrixOperation.apply
(ColumnMajorSparseMatrix a, DenseMatrix b) CommonMatrixMatrixOperation.apply
(DenseMatrix a, ColumnMajorSparseMatrix b) CommonMatrixMatrixOperation.apply
(DenseMatrix a, DenseMatrix b) CommonMatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) CommonMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) CommonMatrixOperation.apply
(DenseMatrix a) abstract R
MatrixMatrixOperation.apply
(ColumnMajorSparseMatrix a, DenseMatrix b) abstract R
MatrixMatrixOperation.apply
(DenseMatrix a, ColumnMajorSparseMatrix b) abstract R
MatrixMatrixOperation.apply
(DenseMatrix a, DenseMatrix b) abstract R
MatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) abstract R
MatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) abstract R
MatrixOperation.apply
(DenseMatrix a) abstract R
MatrixVectorOperation.apply
(DenseMatrix a, DenseVector b) abstract R
MatrixVectorOperation.apply
(DenseMatrix a, SparseVector b) SimpleMatrixMatrixOperation.apply
(ColumnMajorSparseMatrix a, DenseMatrix b) SimpleMatrixMatrixOperation.apply
(DenseMatrix a, ColumnMajorSparseMatrix b) SimpleMatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) SimpleMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) SymmetricMatrixMatrixOperation.apply
(ColumnMajorSparseMatrix a, DenseMatrix b) SymmetricMatrixMatrixOperation.apply
(DenseMatrix a, ColumnMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply
(DenseMatrix a, RowMajorSparseMatrix b) SymmetricMatrixMatrixOperation.apply
(RowMajorSparseMatrix a, DenseMatrix b) abstract R
VectorMatrixOperation.apply
(DenseVector a, DenseMatrix b) abstract R
VectorMatrixOperation.apply
(SparseVector a, DenseMatrix b) abstract R
SimpleMatrixMatrixOperation.applySimple
(DenseMatrix a, SparseMatrix b) abstract R
SimpleMatrixMatrixOperation.applySimple
(SparseMatrix a, DenseMatrix b) abstract R
SymmetricMatrixMatrixOperation.applySymmetric
(DenseMatrix a, SparseMatrix b) MatrixMatrixOperation.partiallyApply
(DenseMatrix a) MatrixVectorOperation.partiallyApply
(DenseMatrix a) -
Uses of DenseMatrix in org.la4j.operation.inplace
Methods in org.la4j.operation.inplace with parameters of type DenseMatrixModifier and TypeMethodDescriptionInPlaceCopyMatrixToMatrix.apply
(DenseMatrix a, DenseMatrix b) InPlaceCopyMatrixToMatrix.applySimple
(DenseMatrix a, SparseMatrix b) InPlaceCopyMatrixToMatrix.applySimple
(SparseMatrix a, DenseMatrix b) -
Uses of DenseMatrix in org.la4j.operation.ooplace
Methods in org.la4j.operation.ooplace with parameters of type DenseMatrixModifier and TypeMethodDescriptionOoPlaceMatricesAddition.apply
(DenseMatrix a, DenseMatrix b) OoPlaceMatricesMultiplication.apply
(ColumnMajorSparseMatrix a, DenseMatrix b) OoPlaceMatricesMultiplication.apply
(DenseMatrix a, ColumnMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply
(DenseMatrix a, DenseMatrix b) OoPlaceMatricesMultiplication.apply
(DenseMatrix a, RowMajorSparseMatrix b) OoPlaceMatricesMultiplication.apply
(RowMajorSparseMatrix a, DenseMatrix b) OoPlaceMatricesSubtraction.apply
(DenseMatrix a, DenseMatrix b) OoPlaceMatrixByItsTransposeMultiplication.apply
(DenseMatrix a) OoPlaceMatrixByVectorMultiplication.apply
(DenseMatrix a, DenseVector b) OoPlaceMatrixByVectorMultiplication.apply
(DenseMatrix a, SparseVector b) OoPlaceMatrixHadamardProduct.apply
(DenseMatrix a, DenseMatrix b) OoPlaceVectorByMatrixMultiplication.apply
(DenseVector a, DenseMatrix b) OoPlaceVectorByMatrixMultiplication.apply
(SparseVector a, DenseMatrix b) OoPlaceMatricesSubtraction.applySimple
(DenseMatrix a, SparseMatrix b) OoPlaceMatricesSubtraction.applySimple
(SparseMatrix a, DenseMatrix b) OoPlaceMatricesAddition.applySymmetric
(DenseMatrix a, SparseMatrix b) OoPlaceMatrixHadamardProduct.applySymmetric
(DenseMatrix a, SparseMatrix b)