NAG FL Interface
s14ccf (beta_​incomplete)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

s14ccf computes values for the regularized incomplete beta function Ix(a,b) and its complement 1-Ix(a,b).

2 Specification

Fortran Interface
Subroutine s14ccf ( a, b, x, w, w1, ifail)
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: a, b, x
Real (Kind=nag_wp), Intent (Out) :: w, w1
C Header Interface
#include <nag.h>
void  s14ccf_ (const double *a, const double *b, const double *x, double *w, double *w1, Integer *ifail)
The routine may be called by the names s14ccf or nagf_specfun_beta_incomplete.

3 Description

s14ccf evaluates the regularized incomplete beta function and its complement in the normalized form
Ix(a,b) = 1 B(a,b) 0 x ta-1 (1-t) b-1 dt 1Ix (a,b) = Iy (b,a) , where ​ y=1-x ,  
with
Several methods are used to evaluate the functions depending on the arguments a, b and x. The methods include Wise's asymptotic expansion (see Wise (1950)) when a>b, continued fraction derived by DiDonato and Morris (1992) when a, b>1, and power series when b1 or b×x0.7. When both a and b are large, specifically a, b15, the DiDonato and Morris (1992) asymptotic expansion is employed for greater efficiency.
Once either Ix(a,b) or Iy(b,a) is computed, the other is obtained by subtraction from 1. In order to avoid loss of relative precision in this subtraction, the smaller of Ix(a,b) and Iy(b,a) is computed first.
s14ccf is derived from BRATIO in DiDonato and Morris (1992).

4 References

DiDonato A R and Morris A H (1992) Algorithm 708: Significant digit computation of the incomplete beta function ratios ACM Trans. Math. Software 18 360–373
Wise M E (1950) The incomplete beta function as a contour integral and a quickly converging series for its inverse Biometrika 37 208–218

5 Arguments

1: a Real (Kind=nag_wp) Input
On entry: the argument a of the function.
Constraint: a0.0.
2: b Real (Kind=nag_wp) Input
On entry: the argument b of the function.
Constraints:
  • b0.0;
  • either b0.0 or a0.0.
3: x Real (Kind=nag_wp) Input
On entry: x, upper limit of integration.
Constraints:
  • 0.0x1.0;
  • either x0.0 or a0.0;
  • either 1-x0.0 or b0.0.
4: w Real (Kind=nag_wp) Output
On exit: the value of the incomplete beta function Ix(a,b) evaluated from zero to x.
5: w1 Real (Kind=nag_wp) Output
On exit: the value of the complement of the incomplete beta function 1-Ix(a,b), i.e., the incomplete beta function evaluated from x to one.
6: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, a=value.
Constraint: a0.0.
On entry, b=value.
Constraint: b0.0.
ifail=2
On entry, a and b were zero.
Constraint: a or b must be nonzero.
ifail=3
On entry, x=value.
Constraint: 0.0x1.0.
ifail=4
On entry, x and a were zero.
Constraint: x or a must be nonzero.
ifail=5
On entry, 1.0-x and b were zero.
Constraint: 1.0-x or b must be nonzero.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

s14ccf is designed to maintain relative accuracy for all arguments. For very tiny results (of the order of machine precision or less) some relative accuracy may be lost – loss of three or four decimal places has been observed in experiments. For other arguments full relative accuracy may be expected.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
s14ccf is not threaded in any implementation.

9 Further Comments

None.

10 Example

This example reads values of the arguments a and b from a file, evaluates the function and its complement for 10 different values of x and prints the results.

10.1 Program Text

Program Text (s14ccfe.f90)

10.2 Program Data

Program Data (s14ccfe.d)

10.3 Program Results

Program Results (s14ccfe.r)