Click or drag to resize

LinearSplineInterpolate(IEnumerableDouble, IEnumerableDouble) Method

Create a linear spline interpolation from an unsorted set of (x,y) value pairs.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static LinearSpline Interpolate(
	IEnumerable<double> x,
	IEnumerable<double> y
)

Parameters

x  IEnumerableDouble
The sample points.
y  IEnumerableDouble
The sample values corresponding to x.

Return Value

LinearSpline
The linear spline interpolator.
See Also