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