Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:12

0001 #ifndef GammaContinuedFraction_H
0002 #define GammaContinuedFraction_H
0003 
0004 /** Returns the continued fraction summation of the 
0005  *  (complement of the) incomplete gamma function P(a,x) 
0006  *  evaluated by its continued fraction representation. 
0007  *  source: Numerical Recipes
0008  */
0009 extern float GammaContinuedFraction(float a, float x);
0010 
0011 #endif