|
|
◆ Legendred()
| Function Legendred |
( |
N As |
Long, |
|
|
X As |
Double, |
|
|
Optional Info As |
Long |
|
) |
| |
Derivative of Legendre polynomial Pn'(x)
- Purpose
- Computes the derivative of the Legendre polynomial Pn'(x).
- Returns
- Double
Derivative of Legendre polynomial Pn'(x).
- Parameters
-
| [in] | N | Argument n. (0 <= N < 128) |
| [in] | X | Argument x (|x| <= 1). |
| [out] | Info | (Optional)
= 0: Successful exit.
= -1: The argument N had an illegal value. (N < 0, N >= 128)
= -2: The argument X had an illegal value. (|X| > 1)
= 1: Floating point range error. |
- Reference
- boost/math/special_functions
|