Barycentric Series Constructor
Constructs a new barycentric series.
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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
Argument | basis is null. -or- coefficients is null. |
Dimension | The length of coefficients does not equal the size of the basis. |