Synthetic division between cubic and a factor. More...
#include <polynomial.hpp>
Public Member Functions | |
Division () | |
ECL_PUBLIC QuadraticPolynomial | operator() (const CubicPolynomial &p, const double &factor, double &remainder) |
Synthetic division by a factor. | |
virtual | ~Division () |
Synthetic division between cubic and a factor.
Does long division of the polynomial by (x-factor)
Definition at line 1144 of file polynomial.hpp.
ecl::Division< CubicPolynomial >::Division | ( | ) | [inline] |
Definition at line 1146 of file polynomial.hpp.
virtual ecl::Division< CubicPolynomial >::~Division | ( | ) | [inline, virtual] |
Definition at line 1147 of file polynomial.hpp.
QuadraticPolynomial ecl::Division< CubicPolynomial >::operator() | ( | const CubicPolynomial & | 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 44 of file polynomial.cpp.