Function File: coefs= hermitepoly (order,x)

Compute the coefficients of the Hermite polynomial, given the order. We calculate the Hermite polynomial using the recurrence relations, Hn+1(x) = 2x.Hn(x) - 2nHn-1(x).

If the value x is specified, the polynomial is also evaluated, otherwise just the return the coefficients.

Package: miscellaneous