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