Click or drag to resize

CubicSplineInterpolateAkima Method

Create an Akima cubic spline interpolation from an unsorted set of (x,y) value pairs. 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 InterpolateAkima(
	IEnumerable<double> x,
	IEnumerable<double> y
)

Parameters

x  IEnumerableDouble
The sample points.
y  IEnumerableDouble
The sample values corresponding to x.

Return Value

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