|
|
◆ Laguerre_sub()
| Sub Laguerre_sub |
( |
Ret As |
Double, |
|
|
N As |
Long, |
|
|
X As |
Double, |
|
|
Optional Info As |
Long |
|
) |
| |
Laguerre polynomial Ln(x) (Subroutine version)
- Purpose
- Computes the Laguerre polynomial of x.
Ln(x) = e^x/n! dn/dxn(x^n e^(-x))
- Parameters
-
| [out] | Ret | Laguerre polynomial Ln(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
|