Incgamma-func
This function is used to calculate the incomplete Gamma function at x, with parameter a, which is denoted by:
where is the value of Gamma function at a. The parameters, a and x satisfy: a > 0 and x ≥ 0.
double incgamma(double a, double x)
a (input, double)
x (input, double)
Returns the value of the incomplete Gamma function at x, with parameter a.
aa = incgamma(1, 5); aa = ; //0.99326205300093
Gamma