Home | History | Annotate | Download | only in Polynomials

Lines Matching full:real

20  *  - real roots,
22 * - real roots with greatest, smallest absolute real value,
23 * - greatest, smallest real roots.
35 typedef typename NumTraits<Scalar>::Real RealScalar;
58 /** Clear and fills the back insertion sequence with the real roots of the polynomial
59 * i.e. the real part of the complex roots that have an imaginary part which
66 * number that is considered as real.
77 bi_seq.push_back( m_roots[i].real() ); }
135 abs2 = m_roots[i].real() * m_roots[i].real();
139 const RealScalar currAbs2 = m_roots[i].real() * m_roots[i].real();
176 val = m_roots[i].real();
180 const RealScalar curr = m_roots[i].real();
199 * \returns a real root with greatest absolute magnitude.
200 * A real root is defined as the real part of a complex root with absolute imaginary
204 * If no real root is found the boolean hasArealRoot is set to false and the real part of
207 * \param[out] hasArealRoot : boolean true if a real root is found according to the
210 * whether or not a root is real.
222 * \returns a real root with smallest absolute magnitude.
223 * A real root is defined as the real part of a complex root with absolute imaginary
227 * If no real root is found the boolean hasArealRoot is set to false and the real part of
230 * \param[out] hasArealRoot : boolean true if a real root is found according to the
233 * whether or not a root is real.
245 * \returns the real root with greatest value.
246 * A real root is defined as the real part of a complex root with absolute imaginary
250 * If no real root is found the boolean hasArealRoot is set to false and the real part of
253 * \param[out] hasArealRoot : boolean true if a real root is found according to the
256 * whether or not a root is real.
268 * \returns the real root with smallest value.
269 * A real root is defined as the real part of a complex root with absolute imaginary
273 * If no real root is found the boolean hasArealRoot is set to false and the real part of
276 * \param[out] hasArealRoot : boolean true if a real root is found according to the
279 * whether or not a root is real.
307 * Computes the complex roots of a real polynomial.
314 * - real roots,
316 * - real roots with greatest, smallest absolute real value.
317 * - greatest, smallest real roots.