Doxygen Source Code Documentation
cdf_34.c File Reference
#include "cdflib.h"Go to the source code of this file.
Functions | |
| void | cumpoi (double *s, double *xlam, double *cum, double *ccum) |
Function Documentation
|
||||||||||||||||||||
|
Definition at line 2 of file cdf_34.c. References cumchi(). Referenced by cdfpoi().
00042 {
00043 static double chi,df;
00044 /*
00045 ..
00046 .. Executable Statements ..
00047 */
00048 df = 2.0e0*(*s+1.0e0);
00049 chi = 2.0e0**xlam;
00050 cumchi(&chi,&df,ccum,cum);
00051 return;
00052 } /* END */
|