class PolynomialEquation : public ExplicitEquation
PolynomialEquation represents a nth degree polynomial like y = 3*x^2 + 2*x - 1
virtual void SetDegree(int num)
Sets num as the exponent of the highest power of the independent variables.
A polynomial of degree num has num + 1 coefficients.
|