Click or drag to resize

RealPolynomial Constructor

Initializes a new instance.

Namespace:  AGI.Foundation.NumericalMethods.Advanced
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public RealPolynomial(
	params double[] coefficients
)

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