Evaluates the Chebyshev polynomial of the second kind of the specified degree.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double ChebyshevU(
int degree,
double x
)
Public Shared Function ChebyshevU (
degree As Integer,
x As Double
) As Double
public:
static double ChebyshevU(
int degree,
double x
)
static member ChebyshevU :
degree : int *
x : float -> float
Parameters
- degree
- Type: SystemInt32
The degree of the Chebyshev polynomial. - x
- Type: SystemDouble
A real number.
Return Value
Type:
DoubleThe value of the Chebyshev polynomial of the second kind of degree
degree
evaluated at
x.
Reference