Home | History | Annotate | Download | only in QR

Lines Matching refs:threshold

218       *       For that, it uses the threshold value that you can control by calling
225 RealScalar premultiplied_threshold = abs(m_maxpivot) * threshold();
235 * For that, it uses the threshold value that you can control by calling
248 * For that, it uses the threshold value that you can control by calling
261 * For that, it uses the threshold value that you can control by calling
273 * For that, it uses the threshold value that you can control by calling
305 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
309 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
310 * uses a formula to automatically determine a reasonable threshold.
314 * \param threshold The new value to use as the threshold.
317 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
322 ColPivHouseholderQR& setThreshold(const RealScalar& threshold)
325 m_prescribedThreshold = threshold;
330 * determining the threshold.
343 /** Returns the threshold that will be used by certain methods such as rank().
347 RealScalar threshold() const