Constructs the interpolating polynomial through a
set of points.
Namespace:
Extreme.Mathematics.Curves
Assembly:
Extreme.Numerics.Net20 (in Extreme.Numerics.Net20.dll) Version: 3.6.10055.0 (3.6.10077.0)
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function GetInterpolatingPolynomial ( _
xValues As Double(), _
yValues As Double() _
) As Polynomial |
| Visual C++ |
|---|
public:
static Polynomial^ GetInterpolatingPolynomial(
array<double>^ xValues,
array<double>^ yValues
) |
Parameters
- xValues
- Type: array<
System..::.Double
>[]()[][]
A Double array containing
the xValues-coordinates of the interpolation points. The
elements of this array must be distinct.
- yValues
- Type: array<
System..::.Double
>[]()[][]
A Double array containing
the yValues-coordinates of the interpolation points.
Return Value
The interpolating
Polynomial
for the specified points.
Exceptions
See Also