XLPack 7.0
XLPack Numerical Library (C API) Reference Manual
Loading...
Searching...
No Matches

◆ ibetac()

double ibetac ( double  a,
double  b,
double  x 
)

Normalized compliment of incomplete beta function 1 - Ix(a, b)

Purpose
ibetac computes the normalized compliment of the incomplete beta function
1 - Ix(a, b) = I(1-x)(b, a)
Returns
Normalized compliment of incomplete beta function 1 - Ix(a, b).
Parameters
[in]aArgument a. (a >= 0, but a = b = 0 is not allowed)
[in]bArgument b. (b >= 0, but a = b = 0 is not allowed)
[in]xArgument x. (0 <= x <= 1)
Error handling
  • If a < 0, b < 0, a = b = 0, x < 0 or x > 1, domain error (EDOM) occurs.
  • Range error (ERANGE) may occur.
Reference
boost/math/special_functions