Click or drag to resize

Polynomial Constructor

Overload List
 NameDescription
Public methodPolynomial Create a zero-polynomial
Public methodPolynomial(Double) Create a constant polynomial. Example: 3.0 -> "p : x -> 3.0"
Public methodPolynomial(Double) Create a polynomial with the provided coefficients (in ascending order, where the index matches the exponent). Example: {5, 0, 2} -> "p : x -> 5 + 0 x^1 + 2 x^2".
Public methodPolynomial(IEnumerableDouble) Create a polynomial with the provided coefficients (in ascending order, where the index matches the exponent). Example: {5, 0, 2} -> "p : x -> 5 + 0 x^1 + 2 x^2".
Public methodPolynomial(Int32) Create a zero-polynomial with a coefficient array of the given length. An array of length N can support polynomials of a degree of at most N-1.
Top
See Also