Evaluates a series of Chebyshev polynomials of the second kind.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double ChebyshevUSeries(
Vector<double> coefficients,
double x
)
Public Shared Function ChebyshevUSeries (
coefficients As Vector(Of Double),
x As Double
) As Double
public:
static double ChebyshevUSeries(
Vector<double>^ coefficients,
double x
)
static member ChebyshevUSeries :
coefficients : Vector<float> *
x : float -> float
Parameters
- coefficients
- Type: Extreme.MathematicsVectorDouble
A vector containing the coefficients. - x
- Type: SystemDouble
The value for which to evaluate the series.
Return Value
Type:
DoubleThe sum of the Chebyshev polynomials of the second kind at
x multiplied by the corresponding element of
coefficients.
Reference