PolynomialBasis.GetFunction Method

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetFunction(Double[]) Constructs a new LinearCombination from the functions in this instance.
Obsolete.
GetFunction(Vector<Double>) Constructs a new Polynomial with the specified coefficients.

GetFunction(Vector<Double>)

Constructs a new Polynomial with the specified coefficients.
C#
public override LinearCombination GetFunction(
	Vector<double> coefficients
)

Parameters

coefficients  Vector<Double>
A vector containing the coefficients of the polynomial. The first element in the array corresponds to the constant term.

Return Value

LinearCombination
A Polynomial cast as a LinearCombination.

See Also