Meta.Numerics Library
HermiteHe Method (n, x)
Meta.NumericsMeta.Numerics.FunctionsOrthogonalPolynomialsHermiteHe(Int32, Double)
Computes the value of a (statisticians') Hermite polynomial.
Declaration Syntax
C#Visual BasicVisual C++F#
public static double HermiteHe(
	int n,
	double x
)
Public Shared Function HermiteHe ( _
	n As Integer, _
	x As Double _
) As Double
public:
static double HermiteHe(
	int n, 
	double x
)
static member HermiteHe : 
        n:int * 
        x:float -> float 
Parameters
n (Int32)
The order, which must be non-negative.
x (Double)
The argument.
Return Value
The value Hen(x).
Remarks

Hermite polynomials are orthogonal on the interval (-∞,+∞) with a weight function equal to the standard normal probability distribution.

Their orthonormality relation makes them a useful basis for expressing pertubations arround a normal distribution.

Physicists' Hermite polynomials (see HermiteH(Int32, Double)) are related to statisticians' Hermite polynomials via Hn(x) = 2nHn(x √2).

See Also