Hi everybody!
My previous thread on sine function optimization grow very large so I was being asked by Sergey Kostrov to create a new threads for my other functions implementations.
Now I'am starting with gamma stirling approximation.The code is based on formula taken from "Handbook of Mathematical Functions" p. 257 formula 6.1.37
Function was tested against the book's table and later against the Mathematica 8which is used as areference model for an accuracy comparision.
There are two implementations.
One of them is based on 1d arrays ,library pow() calls and division inside for-loop
to calculate coefficients and to sum the series expansion.First function uses 14 terms of stirling expansion second uses 10 terms of stirling expansion btw regarding the slower implementation with more terms was not able to increase the accuracy when compared to Mathematica 8 reference result.
Second method is faster because array'scoefficients fillingand summation is eliminated
and also pow() library calls are not used.Instead the function relies on simple calculation of
argument x ofconsecutivepowers mulitplied by constant denominator and divided by thenumerator.
Pre-calculation of coefficients was not possible because of dependency of denominator on argument x.
Accuracy when compared to Mathematica code is between 15-16 decimal places.
Feel free to optimize and test this code and please do not forget to post your opinion.
Code for C implementation of stirling gamma function
slower version
inline double gamma(double x){
double sum,result;
sum = 0;
result = 0;
if( x > gamma_huge){
return (x-x)/(x-x); //NaN
}else if( x < one){
return (x-x)/(x-x);
}else{
double ln,power,pi_sqrt,two_pi,arg;
two_pi = 2*Pi;
double coef1[] = {1.0,1.0,139.0,571.0,163879.0,
5246819.0,534703531.0,4483131259.0,
432261921612371.0, 6232523202521089.0,
25834629665134204969.0,1579029138854919086429.0,
746590869962651602203151.0,1511513601028097903631961.0
};
double coef2[] = {12.0,288.0,51840.0,2488320.0,209018880.0,
75246796800.0, 902961561600.0,86684309913600.0,
514904800886784000.0, 86504006548979712000.0,
13494625021640835072000.0,9716130015581401251840000.0,
116593560186976815022080000.0,2798245444487443560529920000.0
};
int const size = 14;
double temp[size];
double temp2[size];
double temp3[size];
int i,j;
long k;
k = 0;
for(i = 0;i
++k;
temp[i] = pow(x,k);
}
for(j = 0;j
temp2[j] = (temp[j]*coef2[j]);
}
for(int j1 = 0; j1
temp3[j1] = (coef1[j1]/temp2[j1]);
}
ln = exp(-x);
arg = x-0.5;
power = pow(x,arg);
pi_sqrt = sqrt(two_pi);
sum = ln*power*pi_sqrt;
result = one+temp3[0]+temp3[1]-temp3[2]-temp3[3]+temp3[4]+temp3[5]-temp3[6]-temp3[7]+temp3[8]+temp3[9]-temp3[10]-temp3[11]+temp3[12]-temp3[13];
}
return sum*result;
}
Results of 1e6 iterations gamma() called with an argument incremented by 0.000001.Microsoft Optimizied compiler
gamma() start value is: 13214329
gamma() end value is: 13214688
execution time of gamma() 1e6 iterations is: 359 millisec
gamma 1.999999997453735200000000
Intel Compiler optimized for speed
gamma() start value is: 24295767
gamma() end value is: 24296016
execution time of gamma() 1e6 iterations is: 249 millisec
gamma 1.999999997453735200000000
Intel compiler settings
/Zi /nologo /W3 /MP /O2 /Ob2 /Oi /Ot /Oy /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_UNICODE" /D "UNICODE" /EHsc /GS- /Gy /arch:SSE2 /fp:precise /QxHost /Zc:wchar_t /Zc:forScope /Fp"Release\\inline.c.pch" /FAcs /Fa"Release\\" /Fo"Release\\" /Fd"Release\\vc100.pdb" /Gd /TP



