Polynomial Constructor
DefinitionPermalink
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
Overload ListPermalink
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>)Permalink
Constructs a new polynomial with the specified
coefficients.
public Polynomial(
IList<double> coefficients
)
Parameters
ExceptionsPermalink
Argument | coefficients is null. |
Polynomial(Int32)Permalink
Constructs a new polynomial of the specified degree.
Polynomial(Double[], Boolean)Permalink
Constructs a new polynomial with the specified
coefficients.
public Polynomial(
double[] coefficients,
bool descendingOrder
)
Parameters
ExceptionsPermalink
Argument | coefficients is null. |
Polynomial(IList<Double>, Boolean)Permalink
Constructs a new polynomial with the specified
coefficients.
public Polynomial(
IList<double> coefficients,
bool descendingOrder
)
Parameters
ExceptionsPermalink
Argument | coefficients is null. |