Lines Matching defs:threshold
154 * For that, it uses the threshold value that you can control by calling
179 * For that, it uses the threshold value that you can control by calling
238 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
242 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
243 * uses a formula to automatically determine a reasonable threshold.
247 * \param threshold The new value to use as the threshold.
250 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
255 FullPivLU& setThreshold(const RealScalar& threshold)
258 m_prescribedThreshold = threshold;
263 * determining the threshold.
276 /** Returns the threshold that will be used by certain methods such as rank().
280 RealScalar threshold() const
292 * For that, it uses the threshold value that you can control by calling
299 RealScalar premultiplied_threshold = abs(m_maxpivot) * threshold();
309 * For that, it uses the threshold value that you can control by calling
322 * For that, it uses the threshold value that you can control by calling
335 * For that, it uses the threshold value that you can control by calling
347 * For that, it uses the threshold value that you can control by calling
583 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();
652 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();