Typo in COD's doc: matrixR() -> matrixT()

This commit is contained in:
Björn Ingvar Dahlgren 2022-02-07 10:31:09 +01:00 committed by Rasmus Munk Larsen
parent 94bed2b80c
commit b94bddcde0

View File

@ -179,7 +179,7 @@ template <typename MatrixType_> class CompleteOrthogonalDecomposition
* \code matrixT().template triangularView<Upper>() \endcode * \code matrixT().template triangularView<Upper>() \endcode
* For rank-deficient matrices, use * For rank-deficient matrices, use
* \code * \code
* matrixR().topLeftCorner(rank(), rank()).template triangularView<Upper>() * matrixT().topLeftCorner(rank(), rank()).template triangularView<Upper>()
* \endcode * \endcode
*/ */
const MatrixType& matrixT() const { return m_cpqr.matrixQR(); } const MatrixType& matrixT() const { return m_cpqr.matrixQR(); }