Click or drag to resize

RationalCubicSplineDifferences Method

Calculates the difference vector dx(i) from vector x(i) and ensures that x is strictly monotone increasing or decreasing. Can be called with both arguments referring to the same vector in order to do it in place.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static void Differences(
	IReadOnlyList<double> x,
	Vector<double> dx
)

Parameters

x  IReadOnlyListDouble
Input vector.
dx  VectorDouble
Output vector to receive the differences.
See Also