Uses of Class
dev.nm.algebra.linear.matrix.doubles.matrixtype.dense.diagonal.DiagonalMatrix
-
-
Uses of DiagonalMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.eigen
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.eigen that return DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
EigenDecomposition. D()
Get the diagonal matrix D as in Q * D * Q' = A. -
Uses of DiagonalMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.svd
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.svd that return DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
GolubKahanSVD. D()
DiagonalMatrix
SVD. D()
DiagonalMatrix
SVDDecomposition. D()
Get the D matrix as in SVD decomposition.DiagonalMatrix
SymmetricSVD. D()
Returns the matrix D as in A=UDV'. -
Uses of DiagonalMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.svd.mr3
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.svd.mr3 that return DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
BidiagonalSVDbyMR3. D()
DiagonalMatrix
SVDbyMR3. D()
-
Uses of DiagonalMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.triangle
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.triangle that return DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
LDLt. D()
Get D the the diagonal matrix in the LDL decomposition. -
Uses of DiagonalMatrix in dev.nm.algebra.linear.matrix.doubles.matrixtype.dense.diagonal
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype.dense.diagonal that return DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
DiagonalMatrix. deepCopy()
DiagonalMatrix
DiagonalMatrix. ONE()
DiagonalMatrix
DiagonalMatrix. opposite()
DiagonalMatrix
DiagonalMatrix. scaled(double scalar)
DiagonalMatrix
DiagonalMatrix. t()
The transpose of a diagonal matrix is the same as itself.DiagonalMatrix
DiagonalMatrix. ZERO()
Constructors in dev.nm.algebra.linear.matrix.doubles.matrixtype.dense.diagonal with parameters of type DiagonalMatrix Constructor Description DiagonalMatrix(DiagonalMatrix that)
Copy constructor. -
Uses of DiagonalMatrix in dev.nm.algebra.linear.matrix.doubles.operation
Methods in dev.nm.algebra.linear.matrix.doubles.operation that return DiagonalMatrix Modifier and Type Method Description static DiagonalMatrix
MatrixFactory. diagonalMatrix(Matrix A)
Gets the diagonal of a matrix. -
Uses of DiagonalMatrix in dev.nm.algebra.linear.matrix.doubles.operation.positivedefinite
Methods in dev.nm.algebra.linear.matrix.doubles.operation.positivedefinite that return DiagonalMatrix Modifier and Type Method Description DiagonalMatrix
MatthewsDavies. D()
Gets the diagonal matrix D in the LDL decomposition.DiagonalMatrix
MatthewsDavies. Dhat()
Gets the modified diagonal matrix which is positive definite.
-