Click or drag to resize

CubicSplineInterpolateMakimaInplace Method

Creates a modified Akima (makima) cubic spline interpolation from an unsorted set of (x,y) value pairs. WARNING: This method works in-place and will sort the input arrays.

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

Parameters

x  Double
Sample points
y  Double
Sample values corresponding to x

Return Value

CubicSpline
A CubicSpline instance using the makima method
See Also