Home | History | Annotate | Download | only in Cholesky

Lines Matching refs:MatrixU

141     inline typename Traits::MatrixU matrixU() const
471 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitUpper> MatrixU;
473 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); }
479 typedef const TriangularView<const MatrixType, UnitUpper> MatrixU;
481 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m); }
588 matrixU().solveInPlace(dst);
634 res = matrixU() * res;