Click or drag to resize

CubicSplineInterpolateAkimaSorted Method

Create an Akima cubic spline interpolation from a set of (x,y) value pairs, sorted ascendingly by x. Akima splines are robust to outliers.

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

Parameters

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

Return Value

CubicSpline
An Akima cubic spline interpolation for the supplied samples.
See Also