Lines Matching refs:threshold
215 * For that, it uses the threshold value that you can control by calling
222 RealScalar premultiplied_threshold = abs(m_maxpivot) * threshold();
232 * For that, it uses the threshold value that you can control by calling
245 * For that, it uses the threshold value that you can control by calling
258 * For that, it uses the threshold value that you can control by calling
270 * For that, it uses the threshold value that you can control by calling
301 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
305 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
306 * uses a formula to automatically determine a reasonable threshold.
310 * \param threshold The new value to use as the threshold.
313 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
318 FullPivHouseholderQR& setThreshold(const RealScalar& threshold)
321 m_prescribedThreshold = threshold;
326 * determining the threshold.
339 /** Returns the threshold that will be used by certain methods such as rank().
343 RealScalar threshold() const