Synthetic division between quadratic and a factor. More...
#include <polynomial.hpp>
Public Member Functions | |
Division () | |
ECL_PUBLIC LinearFunction | operator() (const QuadraticPolynomial &p, const double &factor, double &remainder) |
Synthetic division by a factor. | |
virtual | ~Division () |
Synthetic division between quadratic and a factor.
Does long division of the polynomial by (x-factor)
Definition at line 1124 of file polynomial.hpp.
ecl::Division< QuadraticPolynomial >::Division | ( | ) | [inline] |
Definition at line 1126 of file polynomial.hpp.
virtual ecl::Division< QuadraticPolynomial >::~Division | ( | ) | [inline, virtual] |
Definition at line 1127 of file polynomial.hpp.
LinearFunction ecl::Division< QuadraticPolynomial >::operator() | ( | const QuadraticPolynomial & | p, |
const double & | factor, | ||
double & | remainder | ||
) |
Synthetic division by a factor.
p | : the polynomial |
factor | : of the form (x-factor) |
remainder | : remainder left after the division |
Definition at line 34 of file polynomial.cpp.