Macros

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

/** Returns the series summation of the series representation 
 *  of the incomplete gamma function P(a,x). 
 *  source: Numerical Recipes
 */
extern float GammaSeries(float a, float x);

#endif