gammaln
Natural logarithm of the gamma function.
Usage
var gammaln = require( '@stdlib/math/base/special/gammaln' );
gammaln( x )
Evaluates the natural logarithm of the gamma function.
var v = gammaln( 2.0 );
// returns 0.0
v = gammaln( 1.0 );
// returns 0.0
v = gammaln( 4.0 );
// returns ~1.792
v = gammaln( -0.5 );
// returns ~1.266
v = gammaln( 0.5 );
// returns ~0.572
v = gammaln( 0.0 );
// returns Infinity
v = gammaln( NaN );
// returns NaN
Examples
var linspace = require( '@stdlib/array/base/linspace' );
var gammaln = require( '@stdlib/math/base/special/gammaln' );
var x = linspace( -10.0, 10.0, 100 );
var i;
for ( i = 0; i < x.length; i++ ) {
console.log( 'x: %d, f(x): %d', x[ i ], gammaln( x[ i ] ) );
}
C APIs
Usage
#include "stdlib/math/base/special/gammaln.h"
stdlib_base_gammaln( x )
Evaluates the natural logarithm of the gamma function.
double out = stdlib_base_gammaln( 2.0 );
// returns 0.0
out = stdlib_base_gammaln( 4.0 );
// returns ~1.792
The function accepts the following arguments:
- x:
[in] double
input value.
double stdlib_base_gammaln( const double x );
Examples
#include "stdlib/math/base/special/gammaln.h"
#include <stdlib.h>
#include <stdio.h>
int main( void ) {
const double x[] = { 4.0, -1.5, -0.5, 0.5 };
double y;
int i;
for ( i = 0; i < 4; i++ ) {
y = stdlib_base_gammaln( x[ i ] );
printf( "gammaln(%lf) = %lf\n", x[ i ], y );
}
}