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