Go to the documentation of this file.
   54     double Gamma(
double a,
double x);
 
   58     double GamCf(
double a,
double x);
 
   59     double GamSer(
double a,
double x);
 
   62     static short  Abs(
short d)  { 
return (d > 0) ? d : -
d; }
 
   63     static int    Abs(
int d)    { 
return (d > 0) ? d : -
d; }
 
   64     static long   Abs(
long d)   { 
return (d > 0) ? d : -
d; }
 
   65     static float  Abs(
float d)  { 
return (d > 0) ? d : -
d; }
 
   66     static double Abs(
double d) { 
return (d > 0) ? d : -
d; }
 
   67     static double LnGamma(
double z); 
 
   68     static double Log(
double x) { 
return std::log(x); }
 
   69     static double Exp(
double x) { 
return std::exp(x); }