Class Polynomialid


  • public class Polynomialid
    extends PolynomialNDidComplexDouble
    Representation of an ordinary polynomial with scalar coefficients (that can be both
    real and complex).

    Representation of a polynomial of the following form:

    f(x) = c_n x^n + c_(n-1) x^(n-1) + c_2 x^2 + c_1 x + c_0

    The polynomial is represented as a list of coefficients ordered from lowest-order term to
    highest-order term, {c_0,c_1,...,c_n} .