Doxygen Source Code Documentation
cdf_31.c File Reference
#include "cdflib.h"Go to the source code of this file.
Functions | |
| void | cumgam (double *x, double *a, double *cum, double *ccum) |
Function Documentation
|
||||||||||||||||||||
|
Definition at line 2 of file cdf_31.c. Referenced by cdfgam(), and cumchi().
00044 {
00045 static int K1 = 0;
00046 /*
00047 ..
00048 .. Executable Statements ..
00049 */
00050 if(!(*x <= 0.0e0)) goto S10;
00051 *cum = 0.0e0;
00052 *ccum = 1.0e0;
00053 return;
00054 S10:
00055 gratio(a,x,cum,ccum,&K1);
00056 /*
00057 Call gratio routine
00058 */
00059 return;
00060 } /* END */
|