Evaluates a sequence of Hermite polynomials of increasing degree starting at the specified degree
and returns the result in the specified vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<double> HermiteHSequence(
int startDegree,
int length,
double x,
Vector<double> result
)
Public Shared Function HermiteHSequence (
startDegree As Integer,
length As Integer,
x As Double,
result As Vector(Of Double)
) As Vector(Of Double)
public:
static Vector<double>^ HermiteHSequence(
int startDegree,
int length,
double x,
Vector<double>^ result
)
static member HermiteHSequence :
startDegree : int *
length : int *
x : float *
result : Vector<float> -> Vector<float>
Parameters
- startDegree
- Type: SystemInt32
An integer that specifies the first degree in the sequence. - length
- Type: SystemInt32
The length of the sequence. - x
- Type: SystemDouble
A real number. - result
- Type: Extreme.MathematicsVectorDouble
The vector that is to hold the result. May be .
Return Value
Type:
VectorDoubleThe vector
result, which contains
length values of
the Hermite polynomial of increasing orders
starting from
startDegree evaluated at
x.
Reference