|
◆ hyp2f0()
double hyp2f0 |
( |
double |
a1, |
|
|
double |
a2, |
|
|
double |
z |
|
) |
| |
Hypergeometric function 2F0(a1, a2; z)
- Purpose
- hyp2f0 computes the hypergeometric function 2F0(a1, a2; z).
2F0(a1, a2; z) = Σ(a1)k * (a2)k * z^k / k! (k = 1 to ∞)
- Returns
- 2F0(a1, a2; z).
- Parameters
-
[in] | a1 | Argument a1. (one of a1 or a2 must be a negative integer) |
[in] | a2 | Argument a2. (one of a1 or a2 must be a negative integer) |
[in] | z | Argument z. |
- Error handling
- If both a1 and a2 are not negative integers, domain error (EDOM) occurs.
- Range error (ERANGE) may occur.
- Reference
- boost/math/special_functions
|