Home | History | Annotate | Download | only in QR

Lines Matching defs:rank

20   * \brief Householder rank-revealing QR decomposition of a matrix with column-pivoting
24 * This class performs a rank-revealing QR decomposition of a matrix \b A into matrices \b P, \b Q and \b R
32 * This decomposition performs column pivoting in order to be rank-revealing and improve
166 * For rank-deficient matrices, use
168 * matrixR().topLeftCorner(rank(), rank()).template triangularView<Upper>()
215 /** \returns the rank of the matrix of which *this is the QR decomposition.
221 inline Index rank() const
241 return cols() - rank();
254 return rank() == cols();
267 return rank() == rows();
305 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
343 /** Returns the threshold that will be used by certain methods such as rank().
361 * \sa rank()