Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11
#ifndef GammaContinuedFraction_H
#define GammaContinuedFraction_H

/** Returns the continued fraction summation of the 
 *  (complement of the) incomplete gamma function P(a,x) 
 *  evaluated by its continued fraction representation. 
 *  source: Numerical Recipes
 */
extern float GammaContinuedFraction(float a, float x);

#endif