|
|
◆ ibetacib()
| double ibetacib |
( |
double |
a, |
|
|
double |
x, |
|
|
double |
q |
|
) |
| |
Normalized compliment of incomplete beta function 1 - Ix(a, b) inverse for b
- Purpose
- ibetacib returns a value b such that q = 1 - Ix(a, b), where q is the specified value of the normalized compliment of the incomplete beta function.
- Returns
- Value of b.
- Parameters
-
| [in] | a | Argument a. (a > 0) |
| [in] | x | Argument x. (0 < x < 1) |
| [in] | q | Specified value of normalized compliment of incomplete beta function. (0 <= q <= 1) |
- Error handling
- If a <= 0, x <= 0, x >= 1, q < 0 or q > 1, domain error (EDOM) occurs.
- Range error (ERANGE) may occur.
- Reference
- boost/math/special_functions
|