Polynomial Constructor
Definition
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
| Polynomial( | Constructs a new polynomial with the specified coefficients. |
| Polynomial( | Constructs a new polynomial of the specified degree. |
| Polynomial(Double[], Boolean) | Constructs a new polynomial with the specified coefficients. |
| Polynomial( | Constructs a new polynomial with the specified coefficients. |
Polynomial(IList<Double>)
Constructs a new polynomial with the specified
coefficients.
public Polynomial(
IList<double> coefficients
)Parameters
Exceptions
| Argument | coefficients is null. |
Polynomial(Int32)
Constructs a new polynomial of the specified degree.
Polynomial(Double[], Boolean)
Constructs a new polynomial with the specified
coefficients.
public Polynomial(
double[] coefficients,
bool descendingOrder
)Parameters
Exceptions
| Argument | coefficients is null. |
Polynomial(IList<Double>, Boolean)
Constructs a new polynomial with the specified
coefficients.
public Polynomial(
IList<double> coefficients,
bool descendingOrder
)Parameters
Exceptions
| Argument | coefficients is null. |