CGAL 4.5 - Polynomial
|
Note: This functor is optional!
Computes the polynomial subresultant of two polynomials p and q of type PolynomialTraits_d::Polynomial_d
with respect to outermost variable. Let p=∑i=0,…,npixi and q=∑i=0,…,mqixi, where x is the outermost variable. The i-th subresultant (with i=0,…,min{n,m}) is defined by
where pi and qi are set to zero if i<0. In the case that n=m, Sresn is set to q.
The result is written in an output range, starting with the 0-th subresultant Sres0(p,q) (aka as the resultant of p and q).
Operations | |
template<typename OutputIterator > | |
OutputIterator | operator() (Polynomial_d p, Polynomial_d q, OutputIterator out) |
computes the polynomial subresultants of p and q, with respect to the outermost variable. More... | |
template<typename OutputIterator > | |
OutputIterator | operator() (Polynomial_d p, Polynomial_d q, OutputIterator out, int i) |
computes the polynomial subresultants of p and q, with respect to the variable xi. | |
OutputIterator PolynomialTraits_d::PolynomialSubresultants::operator() | ( | Polynomial_d | p, |
Polynomial_d | q, | ||
OutputIterator | out | ||
) |
computes the polynomial subresultants of p and q, with respect to the outermost variable.
Each element is of type PolynomialTraits_d::Polynomial_d
.