About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Usage
var randu = require( '@stdlib/random-base-randu' );
randu()
Returns a uniformly distributed pseudorandom number on the interval [0,1)
.
var r = randu();
randu.factory( [options] )
Returns a pseudorandom number generator (PRNG) for generating uniformly distributed random numbers on the interval [0,1)
.
var rand = randu.factory();
The function accepts the following options
:
-
name: name of a supported pseudorandom number generator (PRNG), which will serve as the underlying source of pseudorandom numbers. The following generators are supported:
mt19937
: 32-bit Mersenne Twister.minstd
: linear congruential pseudorandom number generator (LCG) based on Park and Miller.minstd-shuffle
: linear congruential pseudorandom number generator (LCG) whose output is shuffled.
Default: 'mt19937'
.
-
seed: pseudorandom number generator seed. Valid seed values vary according to the underlying PRNG.
-
state: pseudorandom number generator state. Valid state values vary according to the underlying PRNG. 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
.
By default, the underlying pseudorandom number generator is mt19937
. To use a different PRNG, set the name
option.
var rand = randu.factory({
'name': 'minstd-shuffle'
});
var r = rand();
To seed a pseudorandom number generator, set the seed
option.
var rand1 = randu.factory({
'seed': 12345
});
var r1 = rand1();
var rand2 = randu.factory({
'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 = randu();
}
rand = randu.factory({
'state': randu.state
});
bool = ( rand() === randu() );
randu.NAME
The generator name.
var str = randu.NAME;
randu.PRNG
The underlying pseudorandom number generator.
var prng = randu.PRNG;
randu.MIN
Minimum value lower bound.
var min = randu.MIN;
randu.MAX
Maximum value upper bound (not greater than 1
exclusive).
var max = randu.MAX;
randu.seed
The value used to seed randu()
.
var rand;
var r;
var i;
for ( i = 0; i < 100; i++ ) {
r = randu();
}
rand = randu.factory({
'seed': randu.seed
});
for ( i = 0; i < 100; i++ ) {
r = rand();
}
randu.seedLength
Length of generator seed.
var len = randu.seedLength;
randu.state
Writable property for getting and setting the generator state.
var r = randu();
r = randu();
var state = randu.state;
r = randu();
r = randu();
randu.state = state;
r = randu();
r = randu();
randu.stateLength
Length of generator state.
var len = randu.stateLength;
randu.byteLength
Size (in bytes) of generator state.
var sz = randu.byteLength;
randu.toJSON()
Serializes the pseudorandom number generator as a JSON object.
var o = randu.toJSON();
Notice
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.

License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.