Polynomial Constructor
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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. |