BSpline1DInterpolateFunctionSorted Method |
Builds a spline suitable for interpolation when the input points are already sorted by x.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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
BSpline1DA configured
BSpline1D instance.
See Also