Special.ChebyshevT(Int32) Method

Returns a function that evaluates the Chebyshev polynomial of the first kind of the specified degree.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Func<double, double> ChebyshevT(
	int degree
)

Parameters

degree  Int32
The degree of the Chebyshev polynomial.

Return Value

Func<Double, Double>
The Chebyshev polynomial of the first kind of degree degree.

Exceptions

ArgumentOutOfRangeException

degree is less than zero.

See Also