Usage
var iterator = require( '@stdlib/random-iter-beta' );
iterator( alpha, beta[, options] )
Returns an iterator for generating pseudorandom numbers drawn from a beta distribution with parameters alpha
(first shape parameter) and beta
(second shape parameter).
var it = iterator( 2.0, 5.0 );
var r = it.next().value;
r = it.next().value;
r = it.next().value;
If alpha <= 0
or beta <= 0
, the function throws an error.
var it = iterator( -1.0, 1.0 );
The function accepts the following options
:
- prng: pseudorandom number generator for generating uniformly distributed pseudorandom numbers on the interval
[0,1)
. If provided, the function ignores both the state
and seed
options. In order to seed the returned iterator, one must seed the provided prng
(assuming the provided prng
is seedable). - seed: pseudorandom number generator seed.
- state: a
Uint32Array
containing pseudorandom number generator state. If provided, the function ignores the seed
option. - copy:
boolean
indicating whether to copy a provided pseudorandom number generator state. Setting this option to false
allows sharing state between two or more pseudorandom number generators. Setting this option to true
ensures that a returned iterator has exclusive control over its internal pseudorandom number generator state. Default: true
. - iter: number of iterations.
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( 2.0, 4.0, {
'prng': minstd.normalized
});
var r = it.next().value;
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( 2.0, 4.0 );
for ( i = 0; i < 1000; i++ ) {
r = it1.next().value;
}
it2 = iterator( 2.0, 4.0, {
'state': it1.state
});
bool = ( it1.next().value === it2.next().value );
To seed the iterator, set the seed
option.
var it1 = iterator( 2.0, 4.0, {
'seed': 12345
});
var r1 = it1.next().value;
var it2 = iterator( 2.0, 4.0, {
'seed': 12345
});
var r2 = it2.next().value;
var bool = ( r1 === r2 );
To limit the number of iterations, set the iter
option.
var it = iterator( 2.0, 4.0, {
'iter': 2
});
var r = it.next().value;
r = it.next().value;
r = it.next().done;
The returned iterator protocol-compliant object has the following properties:
- next: function which returns an iterator protocol-compliant object containing the next iterated value (if one exists) assigned to a
value
property and a done
property having a boolean
value indicating whether the iterator is finished. - return: function which closes an iterator and returns a single (optional) argument in an iterator protocol-compliant object.
- seed: pseudorandom number generator seed. If provided a
prng
option, the property value is null
. - seedLength: length of generator seed. If provided a
prng
option, the property value is null
. - state: writable property for getting and setting the generator state. If provided a
prng
option, the property value is null
. - stateLength: length of generator state. If provided a
prng
option, the property value is null
. - byteLength: size (in bytes) of generator state. If provided a
prng
option, the property value is null
. - PRNG: underlying pseudorandom number generator.
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.
License
See LICENSE.
Copyright
Copyright © 2016-2021. The Stdlib Authors.