CubicSplineInterpolateNatural Method |
Create a natural cubic spline interpolation from an unsorted set of (x,y) value pairs
and zero second derivatives at the two boundaries.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static CubicSpline InterpolateNatural(
IEnumerable<double> x,
IEnumerable<double> y
)
Parameters
- x IEnumerableDouble
- The sample points.
- y IEnumerableDouble
- The sample values corresponding to x.
Return Value
CubicSplineThe cubic spline interpolator.
See Also