python
,numpy
,cython
npm i prand
rand
uses/dev/random
as entropy, returnsn
random numbers in[0, 1)
range
const rand = require('prand').rand;
let n = 5;
rand(n)
.then(r => {
console.log(r);
})
.catch(e => { console.error(e); });
urand
(pseudo-random) uses/dev/urandom
as entropy, returnsn
pseudo-random numbers in[0, 1)
range
const urand = require('prand').urand;
let n = 8;
urand(n)
.then(r => {
console.log(r);
})
.catch(e => { console.error(e); });
mwc
(multiply-with-carry) andmersenne-twister
are deprecated