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.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static CubicSpline InterpolatePchipSorted(
double[] x,
double[] y
)
Parameters
- x Double
- Sample points, sorted ascendingly.
- y Double
- Sample values corresponding to x.
Return Value
CubicSplineA monotone-preserving cubic spline interpolation for the supplied samples.
See Also