BarycentricSeries Constructor

Constructs a new barycentric series.

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public BarycentricSeries(
	BarycentricBasis basis,
	Vector<double> coefficients
)

Parameters

basis  BarycentricBasis
The basis that defines the support points and weights of the barycentric curve.
coefficients  Vector<Double>
A vector containing the values of the curve at the support points.

Exceptions

ArgumentNullException

basis is null.

-or-

coefficients is null.

DimensionMismatchException

The length of coefficients does not equal the size of the basis.

See Also