Home | History | Annotate | Download | only in QR

Lines Matching defs:threshold

101    * threshold for rank determination will be used. It is a short cut for:
230 * nonzero. For that, it uses the threshold value that you can control by
239 * nonzero. For that, it uses the threshold value that you can control by
248 * nonzero. For that, it uses the threshold value that you can control by
257 * nonzero. For that, it uses the threshold value that you can control by
266 * nonzero. For that, it uses the threshold value that you can control by
298 /** Allows to prescribe a threshold to be used by certain methods, such as
302 * When it needs to get the threshold value, Eigen calls threshold(). By
304 * threshold. Once you have called the present method
307 * \param threshold The new value to use as the threshold.
311 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
317 CompleteOrthogonalDecomposition& setThreshold(const RealScalar& threshold) {
318 m_cpqr.setThreshold(threshold);
323 * formula for determining the threshold.
335 /** Returns the threshold that will be used by certain methods such as rank().
339 RealScalar threshold() const { return m_cpqr.threshold(); }