| Name | Description |
---|
| Polynomial |
Create a zero-polynomial
|
| Polynomial(Double) |
Create a constant polynomial.
Example: 3.0 -> "p : x -> 3.0"
|
| Polynomial(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".
|
| Polynomial(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".
|
| Polynomial(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.
|