Lines Matching defs:threshold
199 * For that, it uses the threshold value that you can control by calling
205 RealScalar premultiplied_threshold = internal::abs(m_maxpivot) * threshold();
215 * For that, it uses the threshold value that you can control by calling
228 * For that, it uses the threshold value that you can control by calling
241 * For that, it uses the threshold value that you can control by calling
253 * For that, it uses the threshold value that you can control by calling
279 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
283 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
284 * uses a formula to automatically determine a reasonable threshold.
288 * \param threshold The new value to use as the threshold.
291 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
296 FullPivHouseholderQR& setThreshold(const RealScalar& threshold)
299 m_prescribedThreshold = threshold;
304 * determining the threshold.
317 /** Returns the threshold that will be used by certain methods such as rank().
321 RealScalar threshold() const