|
◆ hyp0f1()
double hyp0f1 |
( |
double |
b, |
|
|
double |
z |
|
) |
| |
Hypergeometric function 0F1(; b; z)
- Purpose
- hyp0f1 computes the hypergeometric function 0F1(; b; z).
0F1(; b; z) = Σ z^k / ((b)k * k!) (k = 1 to ∞)
- Returns
- 0F1(; b; z).
- Parameters
-
[in] | b | Argument b. (b != zero or a negative integer) |
[in] | z | Argument z. |
- Error handling
- If b is zero or a negative integer, domain error (EDOM) occurs.
- Range error (ERANGE) may occur.
- Reference
- boost/math/special_functions
|