Usage
var gamma = require( '@stdlib/random-base-gamma' );
gamma( alpha, beta )
Returns a pseudorandom number drawn from a gamma distribution with parameters alpha
(shape parameter) and beta
(rate parameter).
var r = gamma( 2.0, 5.0 );
If alpha <= 0
or beta <= 0
, the function returns NaN
.
var r = gamma( 2.0, -2.0 );
r = gamma( -2.0, 2.0 );
If alpha
or beta
is NaN
, the function returns NaN
.
var r = gamma( NaN, 5.0 );
r = gamma( 2.0, NaN );
gamma.factory( [alpha, beta, ][options] )
Returns a pseudorandom number generator (PRNG) for generating pseudorandom numbers drawn from a gamma distribution.
var rand = gamma.factory();
var r = rand( 1.5, 1.5 );
If provided alpha
and beta
, the returned generator returns random variates from the specified distribution.
var rand = gamma.factory( 1.5, 1.5 );
var r = rand();
r = rand();
If not provided alpha
and beta
, the returned generator requires that both parameters be provided at each invocation.
var rand = gamma.factory();
var r = rand( 1.0, 1.0 );
r = rand( 3.14, 2.25 );
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 pseudorandom number generator, 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 generator has exclusive control over its internal state. Default: true
.
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 rand = gamma.factory({
'prng': minstd.normalized
});
var r = rand( 2.0, 3.0 );
To seed a pseudorandom number generator, set the seed
option.
var rand1 = gamma.factory({
'seed': 12345
});
var r1 = rand1( 2.0, 3.0 );
var rand2 = gamma.factory( 2.0, 3.0, {
'seed': 12345
});
var r2 = rand2();
var bool = ( r1 === r2 );
To return a generator having a specific initial state, set the generator state
option.
var rand;
var bool;
var r;
var i;
for ( i = 0; i < 1000; i++ ) {
r = gamma( 2.0, 3.0 );
}
rand = gamma.factory({
'state': gamma.state
});
bool = ( rand( 2.0, 3.0 ) === gamma( 2.0, 3.0 ) );
gamma.NAME
The generator name.
var str = gamma.NAME;
gamma.PRNG
The underlying pseudorandom number generator.
var prng = gamma.PRNG;
gamma.seed
The value used to seed gamma()
.
var rand;
var r;
var i;
for ( i = 0; i < 100; i++ ) {
r = gamma( 2.0, 2.0 );
}
rand = gamma.factory( 2.0, 2.0, {
'seed': gamma.seed
});
for ( i = 0; i < 100; i++ ) {
r = rand();
}
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = gamma.factory({
'prng': Math.random
});
var seed = rand.seed;
gamma.seedLength
Length of generator seed.
var len = gamma.seedLength;
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = gamma.factory({
'prng': Math.random
});
var len = rand.seedLength;
gamma.state
Writable property for getting and setting the generator state.
var r = gamma( 2.0, 5.0 );
r = gamma( 2.0, 5.0 );
var state = gamma.state;
r = gamma( 2.0, 5.0 );
r = gamma( 2.0, 5.0 );
gamma.state = state;
r = gamma( 2.0, 5.0 );
r = gamma( 2.0, 5.0 );
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = gamma.factory({
'prng': Math.random
});
var state = rand.state;
gamma.stateLength
Length of generator state.
var len = gamma.stateLength;
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = gamma.factory({
'prng': Math.random
});
var len = rand.stateLength;
gamma.byteLength
Size (in bytes) of generator state.
var sz = gamma.byteLength;
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = gamma.factory({
'prng': Math.random
});
var sz = rand.byteLength;
gamma.toJSON()
Serializes the pseudorandom number generator as a JSON object.
var o = gamma.toJSON();
If provided a PRNG for uniformly distributed numbers, this method returns null
.
var rand = gamma.factory({
'prng': Math.random
});
var o = rand.toJSON();