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