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.3179.0 (4.8.3179.0)
Syntax
C#
public static CubicSpline InterpolateAkima(
	IEnumerable<double> x,
	IEnumerable<double> y
)

Parameters

x  IEnumerableDouble

[Missing <param name="x"/> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateAkima(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double})"]

y  IEnumerableDouble

[Missing <param name="y"/> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateAkima(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double})"]

Return Value

CubicSpline

[Missing <returns> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateAkima(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double})"]

See Also