|
| Octic () |
| Empty.
|
|
| Octic (const double &, const double &, const double &, const double &, const double &, const double &, const double &, const double &, const double &) |
| Creates a Octic polynomial.
|
|
| ~Octic () |
| Empty.
|
|
constexpr double & | operator[] (int) |
| Access to the coefficients of the sextic.
|
|
constexpr double | operator[] (int) const |
| Overloaded.
|
|
int | CheckDegree () const |
| Check the degree of the Octic.
|
|
Octic | operator- () const |
| Unary.
|
|
Octic & | operator+= (const Octic &) |
| Destructive sum of two Octics.
|
|
Octic & | operator-= (const Octic &) |
| Destructive difference of two Octics.
|
|
Octic & | operator*= (const double &) |
| Scale a Octics by a double value.
|
|
Octic & | operator/= (const double &) |
| Scale a Octics by a double value.
|
|
Sextic | Second () const |
| Computes the second derivative of a Octic.
|
|
constexpr double | operator() (const double &) const |
| Evaluates the Octic. More...
|
|
constexpr double | Derivative (const double &) const |
| Computes the derivative of the sextic. More...
|
|
Octic polynomials.
Constructors should provide the coefficients in descending order. Example of how to code the Octic 19x8-x+1:
Octic p(19.0,0.0,0.0,0.0,0.0,0.0,-1.0,1.0);
Octic polynomials.
Definition: octic.h:8