Constructs the interpolating polynomial through a
set of points.
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function GetInterpolatingPolynomial ( _
xValues As Double(), _
yValues As Double() _
) As Polynomial |
Parameters
- xValues ()
- A Double array containing
the xValues-coordinates of the interpolation points. The
elements of this array must be distinct.
- yValues ()
- A Double array containing
the yValues-coordinates of the interpolation points.
Return Value
The interpolating
Polynomial
for the specified points.
Exceptions