Home | History | Annotate | Download | only in Cholesky

Lines Matching refs:Upper

26   * \param UpLo the triangular part that will be used for the decompositon: Lower (default) or Upper.
47 * Note that during the decomposition, only the upper triangular part of A is considered. Therefore,
96 /** \returns a view of the upper triangular matrix U */
179 * The strict upper part is not used and even not initialized.
316 if(rs>0) A11.adjoint().template triangularView<Upper>().template solveInPlace<OnTheRight>(A21);
329 template<typename Scalar> struct llt_inplace<Scalar, Upper>
356 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Upper> MatrixU;
363 template<typename MatrixType> struct LLT_Traits<MatrixType,Upper>
366 typedef const TriangularView<const MatrixType, Upper> MatrixU;
370 { return llt_inplace<typename MatrixType::Scalar, Upper>::blocked(m)==-1; }