Doxygen Source Code Documentation
        
Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search   
cdf_27.c File Reference
#include "cdflib.h"
Go to the source code of this file.
|  | 
| 
 Functions | 
| void | cumchi (double *x, double *df, double *cum, double *ccum) | 
Function Documentation
  
    | 
        
          | void cumchi | ( | double * | x, |  
          |  |  | double * | df, |  
          |  |  | double * | cum, |  
          |  |  | double * | ccum |  
          |  | ) |  |  | 
  
    |  | 
 
Definition at line 2 of file cdf_27.c.
 
References a, and cumgam().
 
Referenced by cdfchi(), cumchn(), and cumpoi().
 
 00041 {
00042 static double a,xx;
00043 
00044 
00045 
00046 
00047     a = *df*0.5e0;
00048     xx = *x*0.5e0;
00049     cumgam(&xx,&a,cum,ccum);
00050     return;
00051 } 
 |