Click or drag to resize

CubicSplineInterpolateNaturalInplace Method

Create a natural cubic spline interpolation from an unsorted set of (x,y) value pairs and zero second derivatives at the two boundaries. WARNING: Works in-place and can thus causes the data array to be reordered.

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

Parameters

x  Double

[Missing <param name="x"/> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateNaturalInplace(System.Double[],System.Double[])"]

y  Double

[Missing <param name="y"/> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateNaturalInplace(System.Double[],System.Double[])"]

Return Value

CubicSpline

[Missing <returns> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateNaturalInplace(System.Double[],System.Double[])"]

See Also