Doxygen Source Code Documentation
cdf_25.c File Reference
#include "cdflib.h"Go to the source code of this file.
Functions | |
| void | cumbet (double *x, double *y, double *a, double *b, double *cum, double *ccum) |
Function Documentation
|
||||||||||||||||||||||||||||
|
Definition at line 2 of file cdf_25.c. Referenced by cdfbet(), cumbin(), cumnbn(), and cumt().
00056 {
00057 static int ierr;
00058 /*
00059 ..
00060 .. Executable Statements ..
00061 */
00062 if(!(*x <= 0.0e0)) goto S10;
00063 *cum = 0.0e0;
00064 *ccum = 1.0e0;
00065 return;
00066 S10:
00067 if(!(*y <= 0.0e0)) goto S20;
00068 *cum = 1.0e0;
00069 *ccum = 0.0e0;
00070 return;
00071 S20:
00072 bratio(a,b,x,y,cum,ccum,&ierr);
00073 /*
00074 Call bratio routine
00075 */
00076 return;
00077 } /* END */
|