Lines Matching defs:threshold
680 * For that, it uses the threshold value that you can control by calling
688 RealScalar premultiplied_threshold = m_singularValues.coeff(0) * threshold();
694 /** Allows to prescribe a threshold to be used by certain methods, such as rank() and solve(),
698 * When it needs to get the threshold value, Eigen calls threshold().
701 * \param threshold The new value to use as the threshold.
704 * \f$ \vert singular value \vert \leqslant threshold \times \vert max singular value \vert \f$.
708 JacobiSVD& setThreshold(const RealScalar& threshold)
711 m_prescribedThreshold = threshold;
716 * determining the threshold.
729 /** Returns the threshold that will be used by certain methods such as rank().
733 RealScalar threshold() const
862 RealScalar threshold = (max)(considerAsZero, precision * (max)(abs(m_workMatrix.coeff(p,p)),
864 if((max)(abs(m_workMatrix.coeff(p,q)),abs(m_workMatrix.coeff(q,p))) > threshold)