Returns natural logarithm of Gamma function of x Algorithm is from Numerical recipes 6.1 - Java java.lang

Java examples for java.lang:Math Calculation

Description

Returns natural logarithm of Gamma function of x Algorithm is from Numerical recipes 6.1

Demo Code


//package com.java2s;

public class Main {
    /**/*from   ww w  . j a v  a 2  s .c  o m*/
     * Returns natural logarithm of Gamma function of x
     * Algorithm is from Numerical recipes 6.1
     * 
     * @param x
     * @return log(Gamma(x))
     */
    public static double logGamma(double x) {
        double tmp = (x - 0.5) * Math.log(x + 4.5) - (x + 4.5);
        double ser = 1.0 + 76.18009173 / (x + 0) - 86.50532033 / (x + 1)
                + 24.01409822 / (x + 2) - 1.231739516 / (x + 3)
                + 0.00120858003 / (x + 4) - 0.00000536382 / (x + 5);
        return tmp + Math.log(ser * Math.sqrt(2 * Math.PI));

        /*
         * TODO zaokrouhlovat
         */
    }
}

Related Tutorials