Click or drag to resize

CubicSplineInterpolateNaturalSorted Method

Create a natural cubic spline interpolation from a set of (x,y) value pairs and zero second derivatives at the two boundaries, sorted ascendingly by x.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static CubicSpline InterpolateNaturalSorted(
	double[] x,
	double[] y
)

Parameters

x  Double
Sample points, sorted ascendingly.
y  Double
Sample values corresponding to x.

Return Value

CubicSpline
The cubic spline interpolator.
See Also