Click or drag to resize

BarycentricInterpolatePolynomialEquidistant(Double, Double, IEnumerableDouble) Method

Create a barycentric polynomial interpolation from a set of values related to linearly/equidistant spaced points within an interval.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Barycentric InterpolatePolynomialEquidistant(
	double leftBound,
	double rightBound,
	IEnumerable<double> y
)

Parameters

leftBound  Double
The left interval bound.
rightBound  Double
The right interval bound.
y  IEnumerableDouble
The y-values.

Return Value

Barycentric
The barycentric interpolator.
See Also