Home | History | Annotate | Download | only in Cholesky

Lines Matching refs:Upper

26   * \tparam _UpLo the triangular part that will be used for the decompositon: Lower (default) or Upper.
49 * Note that during the decomposition, only the upper triangular part of A is considered. Therefore,
114 /** \returns a view of the upper triangular matrix U */
216 * The strict upper part is not used and even not initialized.
353 if(rs>0) A11.adjoint().template triangularView<Upper>().template solveInPlace<OnTheRight>(A21);
366 template<typename Scalar> struct llt_inplace<Scalar, Upper>
393 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Upper> MatrixU;
400 template<typename MatrixType> struct LLT_Traits<MatrixType,Upper>
403 typedef const TriangularView<const MatrixType, Upper> MatrixU;
407 { return llt_inplace<typename MatrixType::Scalar, Upper>::blocked(m)==-1; }