Lines Matching defs:compute
31 * \tparam _MatrixType the type of the matrix of which to compute the LDL^T Cholesky decomposition
75 * perform decompositions via LDLT::compute(const MatrixType&).
112 compute(matrix.derived());
129 compute(matrix.derived());
212 LDLT& compute(const EigenBase<InputType>& matrix);
273 * Used to compute and store the Cholesky decomposition A = L D L^* = U^* D U.
486 /** Compute / recompute the LDLT decomposition A = L D L^* = U^* D U of \a matrix
490 LDLT<MatrixType,_UpLo>& LDLT<MatrixType,_UpLo>::compute(const EigenBase<InputType>& a)
499 // Compute matrix L1 norm = max abs column sum.
523 /** Update the LDLT decomposition: given A = L D L^T, efficiently compute the decomposition of A + sigma w w^T.