RealPolynomial Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public RealPolynomial(
params double[] coefficients
)
Public Sub New (
ParamArray coefficients As Double()
)
public:
RealPolynomial(
... array<double>^ coefficients
)
new :
coefficients : float[] -> RealPolynomial
Parameters
- coefficients
- Type: SystemDouble
The coefficients of the polynomial, starting with the highest order term
(P = coefficients[0]*x^(N) + coefficients[1]*x^(N-1) + ... + coefficients[N-1]*x + coefficients[N])
where N is the order of the polynomial.
See Also