time-to-botec/squiggle/node_modules/@stdlib/math/base/special/gammaln
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
scripts feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

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/linspace' );
var gammaln = require( '@stdlib/math/base/special/gammaln' );

var x = linspace( -10.0, 10.0, 100 );
var v;
var i;

for ( i = 0; i < x.length; i++ ) {
    v = gammaln( x[ i ] );
    console.log( 'x: %d, f(x): %d', x[ i ], v );
}