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); }
static double Abs(double d)
static short Abs(short d)
double GamCf(double a, double x)
static float Abs(float d)
static double Exp(double x)
double GamSer(double a, double x)
static double Log(double x)
static double LnGamma(double z)