Click or drag to resize

BarycentricInterpolateRationalFloaterHormannInplace(Double, Double, Int32) Method

Create a barycentric rational interpolation without poles, using Mike Floater and Kai Hormann's Algorithm. 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 Barycentric InterpolateRationalFloaterHormannInplace(
	double[] x,
	double[] y,
	int order
)

Parameters

x  Double
Sample points (N), no sorting assumed.
y  Double
Sample values (N).
order  Int32
Order of the interpolation scheme, 0 <= order <= N. In most cases a value between 3 and 8 gives good results.

Return Value

Barycentric

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

See Also