BSpline1DInterpolateCurve Method |
Builds a spline representing a parametric curve without assuming sorted x coordinates.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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
BSpline1DA configured
BSpline1D instance.
See Also