time-to-botec/squiggle/node_modules/@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

3.7 KiB

Gamma Scaled Lanczos Sum

Calculate a scaled Lanczos sum for the approximation of the gamma function.

The Lanczos approximation for the gamma function can be written in partial fraction form as follows:

Lanczos approximation for gamma function.

where g is an arbitrary constant and L_g(n) is the Lanczos sum. The scaled Lanczos sum is given by

Scaled Lanczos sum.

Usage

var gammaLanczosSumExpGScaled = require( '@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled' );

gammaLanczosSumExpGScaled( x )

Calculates the Lanczos sum for the approximation of the gamma function (scaled by exp(-g), where g = 10.900511).

var v = gammaLanczosSumExpGScaled( 4.0 );
// returns ~0.018

v = gammaLanczosSumExpGScaled( -1.5 );
// returns ~25.337

v = gammaLanczosSumExpGScaled( -0.5 );
// returns ~-12.911

v = gammaLanczosSumExpGScaled( 0.5 );
// returns ~1.772

v = gammaLanczosSumExpGScaled( 0.0 );
// returns Infinity

v = gammaLanczosSumExpGScaled( NaN );
// returns NaN

Examples

var linspace = require( '@stdlib/array/linspace' );
var gammaLanczosSumExpGScaled = require( '@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled' );

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

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