Gamma Scaled Lanczos Sum
Calculate a scaled Lanczos sum for the approximation of the gamma function.
Installation
npm install @stdlib/math-base-special-gamma-lanczos-sum-expg-scaled
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 );
v = gammaLanczosSumExpGScaled( -1.5 );
v = gammaLanczosSumExpGScaled( -0.5 );
v = gammaLanczosSumExpGScaled( 0.5 );
v = gammaLanczosSumExpGScaled( 0.0 );
v = gammaLanczosSumExpGScaled( 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 );
}
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Copyright
Copyright © 2016-2021. The Stdlib Authors.
0.0.5 (2021-07-06)
No changes reported for this release.
</section>
<!-- /.release -->
<section class="release" id="v0.0.4">