Click or drag to resize

CubicSplineInterpolatePchipSorted Method

Create a piecewise cubic Hermite interpolating polynomial from an unsorted set of (x,y) value pairs. Monotone-preserving interpolation with continuous first derivative.

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

Parameters

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

Return Value

CubicSpline
A monotone-preserving cubic spline interpolation for the supplied samples.
See Also