|
|
◆ Hermite_sub()
| Sub Hermite_sub |
( |
Ret As |
Double, |
|
|
N As |
Long, |
|
|
X As |
Double, |
|
|
Optional Info As |
Long |
|
) |
| |
Hermite polynomial Hn(x) (Subroutine version)
- Purpose
- Computes the Hermite polynomial of x.
Hn(x) = (-1)^n e^(x^2) dn/dxn(e^(-x^2))
- Parameters
-
| [out] | Ret | Hermite polynomial Hn(x). |
| [in] | N | Argument n. (0 <= N < 128) |
| [in] | X | Argument x. |
| [out] | Info | (Optional)
= 0: Successful exit.
= -1: The argument N had an illegal value. (N < 0, N >= 128)
= 1: Floating point range error. |
- Reference
- boost/math/special_functions
|