Click or drag to resize

BSpline1DInterpolateFunctionSorted Method

Builds a spline suitable for interpolation when the input points are already sorted by x.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static BSpline1D InterpolateFunctionSorted(
	IReadOnlyList<double> x,
	IReadOnlyList<double> y,
	int degree = 3
)

Parameters

x  IReadOnlyListDouble
The x coordinates of the points to interpolate.
y  IReadOnlyListDouble
The y coordinates of the points to interpolate.
degree  Int32  (Optional)
The spline degree.

Return Value

BSpline1D
A configured BSpline1D instance.
See Also