Home | History | Annotate | Download | only in SVD

Lines Matching defs:threshold

127     *       For that, it uses the threshold value that you can control by calling
135 RealScalar premultiplied_threshold = numext::maxi<RealScalar>(m_singularValues.coeff(0) * threshold(), (std::numeric_limits<RealScalar>::min)());
141 /** Allows to prescribe a threshold to be used by certain methods, such as rank() and solve(),
145 * When it needs to get the threshold value, Eigen calls threshold().
148 * \param threshold The new value to use as the threshold.
151 * \f$ \vert singular value \vert \leqslant threshold \times \vert max singular value \vert \f$.
155 Derived& setThreshold(const RealScalar& threshold)
158 m_prescribedThreshold = threshold;
163 * determining the threshold.
176 /** Returns the threshold that will be used by certain methods such as rank().
180 RealScalar threshold() const