Click or drag to resize

CubicSplineInterpolateHermiteInplace Method

Create a Hermite cubic spline interpolation from an unsorted set of (x,y) value pairs and their slope (first derivative). 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 InterpolateHermiteInplace(
	double[] x,
	double[] y,
	double[] firstDerivatives
)

Parameters

x  Double

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

y  Double

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

firstDerivatives  Double

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

Return Value

CubicSpline

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

See Also