Click or drag to resize

Polynomial(DoubleVector) Constructor

Constructs a Polynomial instance with the given coefficients.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public Polynomial(
	DoubleVector coefficients
)

Parameters

coefficients  DoubleVector
A vector of coefficients a0, a1, ... an such that f(x) = a0*x^0 + a1*X^1 + ... + an*x^n.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if passed an empty coefficient vector.
See Also