Uses of Class
org.apache.commons.math4.legacy.linear.DiagonalMatrix
-
Packages that use DiagonalMatrix Package Description org.apache.commons.math4.legacy.linear Linear algebra support. -
-
Uses of DiagonalMatrix in org.apache.commons.math4.legacy.linear
Methods in org.apache.commons.math4.legacy.linear that return DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
DiagonalMatrix. add(DiagonalMatrix m)
Compute the sum ofthis
andm
.static DiagonalMatrix
MatrixUtils. createRealDiagonalMatrix(double[] diagonal)
Creates a diagonal matrix with the specified diagonal elements.DiagonalMatrix
DiagonalMatrix. inverse()
Computes the inverse of this diagonal matrix.DiagonalMatrix
DiagonalMatrix. inverse(double threshold)
Computes the inverse of this diagonal matrix.DiagonalMatrix
DiagonalMatrix. multiply(DiagonalMatrix m)
Returns the result of postmultiplyingthis
bym
.DiagonalMatrix
DiagonalMatrix. subtract(DiagonalMatrix m)
Returnsthis
minusm
.Methods in org.apache.commons.math4.legacy.linear with parameters of type DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
DiagonalMatrix. add(DiagonalMatrix m)
Compute the sum ofthis
andm
.DiagonalMatrix
DiagonalMatrix. multiply(DiagonalMatrix m)
Returns the result of postmultiplyingthis
bym
.DiagonalMatrix
DiagonalMatrix. subtract(DiagonalMatrix m)
Returnsthis
minusm
.
-