![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@stdlib/stats-base-dists-poisson-mgf
Advanced tools
Poisson distribution moment-generating function (MGF).
Poisson distribution moment-generating function (MGF).
The moment-generating function for a Poisson random variable is
where lambda > 0
is the mean parameter.
npm install @stdlib/stats-base-dists-poisson-mgf
var mgf = require( '@stdlib/stats-base-dists-poisson-mgf' );
Evaluates the moment-generating function (MGF) for a Poisson distribution with parameter lambda
(mean).
var y = mgf( 1.0, 1.5 );
// returns ~13.163
y = mgf( 0.5, 0.5 );
// returns ~1.383
If provided NaN
as any argument, the function returns NaN
.
var y = mgf( NaN, 0.5 );
// returns NaN
y = mgf( 0.0, NaN );
// returns NaN
If provided lambda <= 0
, the function returns NaN
.
var y = mgf( -2.0, -1.0 );
// returns NaN
y = mgf( 0.1, 0.0 );
// returns NaN
Returns a function for evaluating the moment-generating function of a Poisson distribution with parameter lambda
(mean).
var mymgf = mgf.factory( 2.0 );
var y = mymgf( 0.1 );
// returns ~1.234
var randu = require( '@stdlib/random-base-randu' );
var mgf = require( '@stdlib/stats-base-dists-poisson-mgf' );
var lambda;
var t;
var y;
var i;
for ( i = 0; i < 10; i++ ) {
t = randu() * 5.0;
lambda = randu() * 5.0;
y = mgf( t, lambda );
console.log( 'x: %d, λ: %d, M_X(t;λ): %d', t.toFixed( 4 ), lambda.toFixed( 4 ), y.toFixed( 4 ) );
}
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.
See LICENSE.
Copyright © 2016-2021. The Stdlib Authors.
0.0.1 (2021-06-15)
No changes reported for this release.
</section> <!-- /.release -->FAQs
Poisson distribution moment-generating function (MGF).
The npm package @stdlib/stats-base-dists-poisson-mgf receives a total of 2 weekly downloads. As such, @stdlib/stats-base-dists-poisson-mgf popularity was classified as not popular.
We found that @stdlib/stats-base-dists-poisson-mgf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.