Evaluates a sequence of Chebyshev polynomials of the second kind of increasing degree.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<double> ChebyshevUSequence(
int length,
double x
)
Public Shared Function ChebyshevUSequence (
length As Integer,
x As Double
) As Vector(Of Double)
public:
static Vector<double>^ ChebyshevUSequence(
int length,
double x
)
static member ChebyshevUSequence :
length : int *
x : float -> Vector<float>
Parameters
- 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 second kind of increasing orders
starting from zero evaluated at
x.
Reference