Doxygen Source Code Documentation
cdf_26.c File Reference
#include "cdflib.h"Go to the source code of this file.
Functions | |
| void | cumbin (double *s, double *xn, double *pr, double *ompr, double *cum, double *ccum) |
Function Documentation
|
||||||||||||||||||||||||||||
|
Definition at line 2 of file cdf_26.c. Referenced by cdfbin().
00051 {
00052 static double T1,T2;
00053 /*
00054 ..
00055 .. Executable Statements ..
00056 */
00057 if(!(*s < *xn)) goto S10;
00058 T1 = *s+1.0e0;
00059 T2 = *xn-*s;
00060 cumbet(pr,ompr,&T1,&T2,ccum,cum);
00061 goto S20;
00062 S10:
00063 *cum = 1.0e0;
00064 *ccum = 0.0e0;
00065 S20:
00066 return;
00067 } /* END */
|