Click or drag to resize

BulirschStoerRationalInterpolationInterpolateInplace Method

Create a Bulirsch-Stoer rational interpolation from an unsorted set of (x,y) value pairs. 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.3572.0 (4.8.3572.0)
Syntax
C#
public static BulirschStoerRationalInterpolation InterpolateInplace(
	double[] x,
	double[] y
)

Parameters

x  Double
The x-values.
y  Double
The y-values.

Return Value

BulirschStoerRationalInterpolation
The rational interpolator.
See Also