non_central_beta_cdf
Evaluates the noncentral beta cumulative distribution function (CDF).
Synopsis
#include <imsls.h>
float imsls_f_non_central_beta_cdf (float x, float shape1, float shape2, float lambda)
The type double function is imsls_d_non_central_beta_cdf.
Required Arguments
float x (Input)
Argument for which the noncentral beta cumulative distribution function is to be evaluated. x must be non-negative and less than or equal to 1.
float shape1 (Input)
First shape parameter of the noncentral beta distribution. shape1 must be positive.
float shape2 (Input)
Second shape parameter of the noncentral beta distribution. shape2 must be positive.
float lambda (Input)
Noncentrality parameter. lambda must be non-negative.
Return Value
The probability that a noncentral beta random variable takes a value less than or equal to x.
Description
The noncentral beta distribution is a generalization of the beta distribution. If Z is a noncentral chi-square random variable with noncentrality parameter λ and 2α1 degrees of freedom, and Y is a chi-square random variable with 2α2 degrees of freedom which is statistically independent of Z, then
is a noncentral beta-distributed random variable and
is a noncentral F-distributed random variable. The CDF for noncentral beta variable X can thus be simply defined in terms of the noncentral F CDF
where Fx(xα1α2λ) is a noncentral beta CDF with x = xα1shape1, α2 = shape2, and noncentrality parameter λ = lambda; FF(f  2α1, 2α2λ) is a noncentral F CDF with argument f, numerator and denominator degrees of freedom 2α1 and 2α2 respectively, and noncentrality parameter λ; and
(See documentation for function imsls_f_non_central_F_cdf for a discussion of how the noncentral F CDF is defined and calculated.)
With a noncentrality parameter of zero, the noncentral beta distribution is the same as the beta distribution.
Example
This example traces out a portion of a noncentral beta distribution with parameters shape1 = 50, shape2 = 5, and lambda = 10.
#include <imsls.h>
#include <stdio.h>
int main()
{
int i;
float f[] = {0.0, 0.4, 0.8, 1.2, 1.6, 2.0, 2.8, 4.0};
float x, shape1 = 50., shape2 = 5., lambda =10.;
float bcdfv, fcdfv, bcdfvexpect;
 
printf ("shape1: %4.0f\n", shape1);
printf ("shape2: %4.0f\n", shape2);
printf ("lambda: %4.0f\n\n", lambda);
printf (" x ncbetcdf(x) ncbetcdf(x)\n");
printf (" expected\n");
 
for (i=0; i<8; i++) {
x = (shape1*f[i]) / (shape1*f[i] + shape2);
fcdfv = imsls_f_non_central_F_cdf
(f[i], 2.*shape1, 2.*shape2, lambda);
bcdfvexpect = fcdfv;
bcdfv = imsls_f_non_central_beta_cdf
(x, shape1, shape2, lambda);
printf (" %8.4f %12.4e %12.4e\n",
x, bcdfvexpect, bcdfv);
}
}
Output
 
shape1: 50
shape2: 5
lambda: 10
 
x ncbetcdf(x) ncbetcdf(x)
expected
0.0000 0.0000e+000 0.0000e+000
0.8000 4.8879e-003 4.8879e-003
0.8889 2.0263e-001 2.0263e-001
0.9231 5.2114e-001 5.2114e-001
0.9412 7.3385e-001 7.3385e-001
0.9524 8.5041e-001 8.5041e-001
0.9655 9.4713e-001 9.4713e-001
0.9756 9.8536e-001 9.8536e-001