BarycentricInterpolateRationalFloaterHormann(IEnumerableDouble, IEnumerableDouble, Int32) Method |
Create a barycentric rational interpolation without poles, using Mike Floater and Kai Hormann's Algorithm.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static Barycentric InterpolateRationalFloaterHormann(
IEnumerable<double> x,
IEnumerable<double> y,
int order
)
Parameters
- x IEnumerableDouble
- Sample points (N), no sorting assumed.
- y IEnumerableDouble
- 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.InterpolateRationalFloaterHormann(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Double},System.Int32)"]
See Also