Click or drag to resize

Polynomial(Double) Constructor

Constructs a Polynomial instance with the given coefficients.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public Polynomial(
	params double[] coefficients
)

Parameters

coefficients  Double
A vector of coefficients a0, a1, ... an such that f(x) = a0*x^0 + a1*X^1 + ... + an*x^n.
See Also