소스 검색

core: implement the gamma function for reals using Spouge's formula.

legacy
Sam Hocevar sam 13 년 전
부모
커밋
4e4e800572
2개의 변경된 파일28개의 추가작업 그리고 0개의 파일을 삭제
  1. +27
    -0
      src/real.cpp
  2. +1
    -0
      src/real.h

+ 27
- 0
src/real.cpp 파일 보기

@@ -607,6 +607,33 @@ real pow(real const &x, real const &y)
}
}

real gamma(real const &x)
{
/* We use Spouge's formula. FIXME: precision is far from acceptable,
* especially with large values. We need to compute this with higher
* precision values in order to attain the desired accuracy. It might
* also be useful to sort the ck values by decreasing absolute value
* and do the addition in this order. */
int a = ceilf(logf(2) / logf(2 * M_PI) * real::BIGITS * real::BIGIT_BITS);

real ret = sqrt(real::R_PI << 1);
real fact_k_1 = real::R_1;

for (int k = 1; k < a; k++)
{
real a_k = (real)(a - k);
real ck = pow(a_k, (real)((float)k - 0.5)) * exp(a_k)
/ (fact_k_1 * (x + (real)(k - 1)));
ret += ck;
fact_k_1 *= (real)-k;
}

ret *= pow(x + (real)(a - 1), x - (real::R_1 >> 1));
ret *= exp(-x - (real)(a - 1));

return ret;
}

real fabs(real const &x)
{
real ret = x;


+ 1
- 0
src/real.h 파일 보기

@@ -91,6 +91,7 @@ public:
friend real sqrt(real const &x);
friend real cbrt(real const &x);
friend real pow(real const &x, real const &y);
friend real gamma(real const &x);

/* Rounding, absolute value, remainder etc. */
friend real ceil(real const &x);


불러오는 중...
취소
저장