PolynomialFromPoints Method (ICollectionXY) |
Initializes a new polynomial that passes through the given points.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static Polynomial FromPoints(
ICollection<XY> points
)
Public Shared Function FromPoints (
points As ICollection(Of XY)
) As Polynomial
public:
static Polynomial^ FromPoints(
ICollection<XY>^ points
)
static member FromPoints :
points : ICollection<XY> -> Polynomial
Parameters
- points
- Type: System.Collections.GenericICollectionXY
A collection of points.
Return Value
Type:
PolynomialA polynomial that passes through all the given points.
See Also