Click or drag to resize

CubicSplineInterpolateMakima Method

Creates a modified Akima (makima) cubic spline interpolation from an unsorted set of (x,y) value pairs.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static CubicSpline InterpolateMakima(
	IEnumerable<double> x,
	IEnumerable<double> y
)

Parameters

x  IEnumerableDouble
Sample points as an IEnumerable
y  IEnumerableDouble
Sample values corresponding to x as an IEnumerable

Return Value

CubicSpline
A CubicSpline instance using the makima method
See Also