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