Click or drag to resize

CubicSplineInterpolateHermite Method

Create a Hermite cubic spline interpolation from an unsorted set of (x,y) value pairs and their slope (first derivative).

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static CubicSpline InterpolateHermite(
	IEnumerable<double> x,
	IEnumerable<double> y,
	IEnumerable<double> firstDerivatives
)

Parameters

x  IEnumerableDouble

[Missing <param name="x"/> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateHermite(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double})"]

y  IEnumerableDouble

[Missing <param name="y"/> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateHermite(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double})"]

firstDerivatives  IEnumerableDouble

[Missing <param name="firstDerivatives"/> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateHermite(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double})"]

Return Value

CubicSpline

[Missing <returns> documentation for "M:Altaxo.Calc.Interpolation.CubicSpline.InterpolateHermite(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double})"]

See Also