CubicSplineInterpolateMakimaSorted Method |
Creates a modified Akima (makima) cubic spline interpolation from a set of (x,y) value pairs,
sorted ascendingly by x.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static CubicSpline InterpolateMakimaSorted(
double[] x,
double[] y
)
Parameters
- x Double
- Sample points (must be sorted ascendingly)
- y Double
- Sample values corresponding to x
Return Value
CubicSplineA CubicSpline instance using the makima method
See Also