BarycentricInterpolateRationalFloaterHormannSorted(Double, Double, Int32) Method |
Create a barycentric rational interpolation without poles, using Mike Floater and Kai Hormann's Algorithm.
The values are assumed to be sorted ascendingly by x.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static Barycentric InterpolateRationalFloaterHormannSorted(
double[] x,
double[] y,
int order
)
Parameters
- x Double
- Sample points (N), sorted ascendingly.
- y Double
- Sample values (N), sorted ascendingly by x.
- 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.InterpolateRationalFloaterHormannSorted(System.Double[],System.Double[],System.Int32)"]
See Also