Lines Matching defs:threshold
179 * For that, it uses the threshold value that you can control by calling
185 RealScalar premultiplied_threshold = internal::abs(m_maxpivot) * threshold();
195 * For that, it uses the threshold value that you can control by calling
208 * For that, it uses the threshold value that you can control by calling
221 * For that, it uses the threshold value that you can control by calling
233 * For that, it uses the threshold value that you can control by calling
260 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
264 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
265 * uses a formula to automatically determine a reasonable threshold.
269 * \param threshold The new value to use as the threshold.
272 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
277 ColPivHouseholderQR& setThreshold(const RealScalar& threshold)
280 m_prescribedThreshold = threshold;
285 * determining the threshold.
298 /** Returns the threshold that will be used by certain methods such as rank().
302 RealScalar threshold() const