| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Create an iterator for generating pseudorandom numbers drawn from a negative binomial distribution.
npm install @stdlib/random-iter-negative-binomialAlternatively,
The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
var iterator = require( '@stdlib/random-iter-negative-binomial' );Returns an iterator for generating pseudorandom numbers drawn from a negative binomial distribution with parameters r (number of successes until experiment is stopped) and p (success probability).
var it = iterator( 10, 0.3 );
// returns <Object>
var r = it.next().value;
// returns <number>
r = it.next().value;
// returns <number>
r = it.next().value;
// returns <number>
// ...If p < 0 or p > 1, the function throws an error.
var it = iterator( 10, 1.2 );
// throws <TypeError>The function accepts the following options:
To use a custom PRNG as the underlying source of uniformly distributed pseudorandom numbers, set the prng option.
var minstd = require( '@stdlib/random-base-minstd' );
var it = iterator( 8, 0.5, {
'prng': minstd.normalized
});
var r = it.next().value;
// returns <number>To return an iterator having a specific initial state, set the iterator state option.
var bool;
var it1;
var it2;
var r;
var i;
it1 = iterator( 8, 0.5 );
// Generate pseudorandom numbers, thus progressing the generator state:
for ( i = 0; i < 1000; i++ ) {
r = it1.next().value;
}
// Create a new iterator initialized to the current state of `it1`:
it2 = iterator( 8, 0.5, {
'state': it1.state
});
// Test that the generated pseudorandom numbers are the same:
bool = ( it1.next().value === it2.next().value );
// returns trueTo seed the iterator, set the seed option.
var it1 = iterator( 8, 0.5, {
'seed': 12345
});
var r1 = it1.next().value;
// returns <number>
var it2 = iterator( 8, 0.5, {
'seed': 12345
});
var r2 = it2.next().value;
// returns <number>
var bool = ( r1 === r2 );
// returns trueTo limit the number of iterations, set the iter option.
var it = iterator( 8, 0.5, {
'iter': 2
});
var r = it.next().value;
// returns <number>
r = it.next().value;
// returns <number>
r = it.next().done;
// returns trueThe returned iterator protocol-compliant object has the following properties:
var iterator = require( '@stdlib/random-iter-negative-binomial' );
var it;
var r;
// Create a seeded iterator for generating pseudorandom numbers:
it = iterator( 10, 0.5, {
'seed': 1234,
'iter': 10
});
// Perform manual iteration...
while ( true ) {
r = it.next();
if ( r.done ) {
break;
}
console.log( r.value );
}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-2026. The Stdlib Authors.
| Back | FazBrowse Home | New Git URL |