Special.ChebyshevTSequence(Int32, Double) Method

Evaluates a sequence of Chebyshev polynomials of the first kind of increasing degree.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<double> ChebyshevTSequence(
	int length,
	double x
)

Parameters

length  Int32
The length of the sequence.
x  Double
A real number.

Return Value

Vector<Double>
A vector that contains length values of the Chebyshev polynomial of the first kind of increasing orders starting from zero evaluated at x.

Exceptions

ArgumentOutOfRangeException

length is less than zero.

See Also