Lines Matching defs:threshold
153 * For that, it uses the threshold value that you can control by calling
178 * For that, it uses the threshold value that you can control by calling
237 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
241 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
242 * uses a formula to automatically determine a reasonable threshold.
246 * \param threshold The new value to use as the threshold.
249 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
254 FullPivLU& setThreshold(const RealScalar& threshold)
257 m_prescribedThreshold = threshold;
262 * determining the threshold.
275 /** Returns the threshold that will be used by certain methods such as rank().
279 RealScalar threshold() const
291 * For that, it uses the threshold value that you can control by calling
297 RealScalar premultiplied_threshold = internal::abs(m_maxpivot) * threshold();
307 * For that, it uses the threshold value that you can control by calling
320 * For that, it uses the threshold value that you can control by calling
333 * For that, it uses the threshold value that you can control by calling
345 * For that, it uses the threshold value that you can control by calling
577 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();
645 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();