Click or drag to resize

BSpline1DInterpolateCurve Method

Builds a spline representing a parametric curve without assuming sorted x coordinates.

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

Parameters

x  IReadOnlyListDouble
The x coordinates of the curve samples.
y  IReadOnlyListDouble
The y coordinates of the curve samples.
degree  Int32  (Optional)
The spline degree.

Return Value

BSpline1D
A configured BSpline1D instance.
See Also