Home | History | Annotate | Download | only in LU

Lines Matching defs:threshold

181       *       For that, it uses the threshold value that you can control by calling
206 * For that, it uses the threshold value that you can control by calling
275 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
279 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
280 * uses a formula to automatically determine a reasonable threshold.
284 * \param threshold The new value to use as the threshold.
287 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
292 FullPivLU& setThreshold(const RealScalar& threshold)
295 m_prescribedThreshold = threshold;
300 * determining the threshold.
313 /** Returns the threshold that will be used by certain methods such as rank().
317 RealScalar threshold() const
329 * For that, it uses the threshold value that you can control by calling
336 RealScalar premultiplied_threshold = abs(m_maxpivot) * threshold();
346 * For that, it uses the threshold value that you can control by calling
359 * For that, it uses the threshold value that you can control by calling
372 * For that, it uses the threshold value that you can control by calling
384 * For that, it uses the threshold value that you can control by calling
659 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();
728 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();