Evaluates a sequence of Chebyshev polynomials of the first kind of increasing degree starting at the specified degree.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<double> ChebyshevTSequence(
int startDegree,
int length,
double x
)
Public Shared Function ChebyshevTSequence (
startDegree As Integer,
length As Integer,
x As Double
) As Vector(Of Double)
public:
static Vector<double>^ ChebyshevTSequence(
int startDegree,
int length,
double x
)
static member ChebyshevTSequence :
startDegree : int *
length : int *
x : float -> Vector<float>
Parameters
- startDegree
- Type: SystemInt32
An integer that specifies the first degree in the sequence. - length
- Type: SystemInt32
The length of the sequence. - x
- Type: SystemDouble
A real number.
Return Value
Type:
VectorDoubleA vector that contains
length values of
the Chebyshev polynomial of the first kind of increasing orders
starting from
startDegree evaluated at
x.
Reference