ChebyshevBasis<T>.GetFunction Method

Constructs a new ChebyshevSeries with the specified coefficients.

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0
C#
public override LinearCombination<T> GetFunction(
	Vector<T> coefficients
)

Parameters

coefficients  Vector<T>
A vector containing the coefficients of the Chebyshev polynomials in the series. The first element in the array corresponds to the constant term.

Return Value

LinearCombination<T>
A ChebyshevSeries cast as a LinearCombination.

Exceptions

ArgumentNullExceptioncoefficients is null.

See Also