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