Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@stdlib/random-base-uniform
Advanced tools
Uniformly distributed pseudorandom numbers.
npm install @stdlib/random-base-uniform
var uniform = require( '@stdlib/random-base-uniform' );
Returns a pseudorandom number drawn from a continuous uniform distribution with parameters a
(minimum support; inclusive) and b
(maximum support; exclusive).
var r = uniform( 2.0, 5.0 );
// returns <number>
If either a
or b
is NaN
or a >= b
, the function returns NaN
.
var r = uniform( 2.0, 1.0 );
// returns NaN
r = uniform( NaN, 1.0 );
// returns NaN
r = uniform( 1.0, NaN );
// returns NaN
Returns a pseudorandom number generator (PRNG) for generating pseudorandom numbers drawn from a uniform distribution.
var rand = uniform.factory();
var r = rand( 0.0, 1.0 );
// returns <number>
If provided a
and b
, the returned generator returns random variates from the specified distribution.
// Draw from uniform( -2.0, 2.0 ) distribution:
var rand = uniform.factory( -2.0, 2.0 );
var r = rand();
// returns <number>
r = rand();
// returns <number>
If not provided a
and b
, the returned generator requires that both parameters be provided at each invocation.
var rand = uniform.factory();
var r = rand( 0.0, 1.0 );
// returns <number>
r = rand( -2.0, 2.0 );
// returns <number>
The function accepts the following options
:
[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).Uint32Array
containing pseudorandom number generator state. If provided, the function ignores the seed
option.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 = uniform.factory({
'prng': minstd.normalized
});
var r = rand( 2.0, 4.0 );
// returns <number>
To seed a pseudorandom number generator, set the seed
option.
var rand1 = uniform.factory({
'seed': 12345
});
var r1 = rand1( 2.0, 4.0 );
// returns <number>
var rand2 = uniform.factory( 2.0, 4.0, {
'seed': 12345
});
var r2 = rand2();
// returns <number>
var bool = ( r1 === r2 );
// returns true
To return a generator having a specific initial state, set the generator state
option.
var rand;
var bool;
var r;
var i;
// Generate pseudorandom numbers, thus progressing the generator state:
for ( i = 0; i < 1000; i++ ) {
r = uniform( 1.0, 2.0 );
}
// Create a new PRNG initialized to the current state of `uniform`:
rand = uniform.factory({
'state': uniform.state
});
// Test that the generated pseudorandom numbers are the same:
bool = ( rand( 1.0, 2.0 ) === uniform( 1.0, 2.0 ) );
// returns true
The generator name.
var str = uniform.NAME;
// returns 'uniform'
The underlying pseudorandom number generator.
var prng = uniform.PRNG;
// returns <Function>
The value used to seed uniform()
.
var rand;
var r;
var i;
// Generate pseudorandom values...
for ( i = 0; i < 100; i++ ) {
r = uniform( 0.0, 10.0 );
}
// Generate the same pseudorandom values...
rand = uniform.factory( 0.0, 10.0, {
'seed': uniform.seed
});
for ( i = 0; i < 100; i++ ) {
r = rand();
}
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = uniform.factory({
'prng': Math.random
});
var seed = rand.seed;
// returns null
Length of generator seed.
var len = uniform.seedLength;
// returns <number>
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = uniform.factory({
'prng': Math.random
});
var len = rand.seedLength;
// returns null
Writable property for getting and setting the generator state.
var r = uniform( 2.0, 5.0 );
// returns <number>
r = uniform( 2.0, 5.0 );
// returns <number>
// ...
// Get a copy of the current state:
var state = uniform.state;
// returns <Uint32Array>
r = uniform( 2.0, 5.0 );
// returns <number>
r = uniform( 2.0, 5.0 );
// returns <number>
// Reset the state:
uniform.state = state;
// Replay the last two pseudorandom numbers:
r = uniform( 2.0, 5.0 );
// returns <number>
r = uniform( 2.0, 5.0 );
// returns <number>
// ...
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = uniform.factory({
'prng': Math.random
});
var state = rand.state;
// returns null
Length of generator state.
var len = uniform.stateLength;
// returns <number>
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = uniform.factory({
'prng': Math.random
});
var len = rand.stateLength;
// returns null
Size (in bytes) of generator state.
var sz = uniform.byteLength;
// returns <number>
If provided a PRNG for uniformly distributed numbers, this value is null
.
var rand = uniform.factory({
'prng': Math.random
});
var sz = rand.byteLength;
// returns null
Serializes the pseudorandom number generator as a JSON object.
var o = uniform.toJSON();
// returns { 'type': 'PRNG', 'name': '...', 'state': {...}, 'params': [] }
If provided a PRNG for uniformly distributed numbers, this method returns null
.
var rand = uniform.factory({
'prng': Math.random
});
var o = rand.toJSON();
// returns null
var uniform = require( '@stdlib/random-base-uniform' );
var seed;
var rand;
var i;
// Generate pseudorandom numbers...
for ( i = 0; i < 100; i++ ) {
console.log( uniform( 0.0, 1.0 ) );
}
// Create a new pseudorandom number generator...
seed = 1234;
rand = uniform.factory( 2.0, 5.0, {
'seed': seed
});
for ( i = 0; i < 100; i++ ) {
console.log( rand() );
}
// Create another pseudorandom number generator using a previous seed...
rand = uniform.factory( 0.0, 1.0, {
'seed': uniform.seed
});
for ( i = 0; i < 100; i++ ) {
console.log( rand() );
}
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.
See LICENSE.
Copyright © 2016-2021. The Stdlib Authors.
FAQs
Uniformly distributed pseudorandom numbers.
The npm package @stdlib/random-base-uniform receives a total of 3,911 weekly downloads. As such, @stdlib/random-base-uniform popularity was classified as popular.
We found that @stdlib/random-base-uniform demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.