@@ -71,8 +71,9 @@ The namespace contains the following PRNGs:
7171- <span class =" signature " >[ ` levy( mu, c ) ` ] [ @stdlib/random/base/levy ] </span ><span class =" delimiter " >: </span ><span class =" description " >Lévy distributed pseudorandom numbers.</span >
7272- <span class =" signature " >[ ` logistic( mu, s ) ` ] [ @stdlib/random/base/logistic ] </span ><span class =" delimiter " >: </span ><span class =" description " >logistic distributed pseudorandom numbers.</span >
7373- <span class =" signature " >[ ` lognormal( mu, sigma ) ` ] [ @stdlib/random/base/lognormal ] </span ><span class =" delimiter " >: </span ><span class =" description " >lognormal distributed pseudorandom numbers.</span >
74- - <span class =" signature " >[ ` minstd() ` ] [ @stdlib/random/base/minstd ] </span ><span class =" delimiter " >: </span ><span class =" description " >A linear congruential pseudorandom number generator (LCG) based on Park and Miller.</span >
7574- <span class =" signature " >[ ` minstdShuffle() ` ] [ @stdlib/random/base/minstd-shuffle ] </span ><span class =" delimiter " >: </span ><span class =" description " >A linear congruential pseudorandom number generator (LCG) whose output is shuffled.</span >
75+ - <span class =" signature " >[ ` minstd() ` ] [ @stdlib/random/base/minstd ] </span ><span class =" delimiter " >: </span ><span class =" description " >A linear congruential pseudorandom number generator (LCG) based on Park and Miller.</span >
76+ - <span class =" signature " >[ ` mt19937() ` ] [ @stdlib/random/base/mt19937 ] </span ><span class =" delimiter " >: </span ><span class =" description " >A 32-bit Mersenne Twister pseudorandom number generator.</span >
7677- <span class =" signature " >[ ` negativeBinomial( r, p ) ` ] [ @stdlib/random/base/negative-binomial ] </span ><span class =" delimiter " >: </span ><span class =" description " >negative binomially distributed pseudorandom numbers.</span >
7778- <span class =" signature " >[ ` normal( mu, sigma ) ` ] [ @stdlib/random/base/normal ] </span ><span class =" delimiter " >: </span ><span class =" description " >normally distributed pseudorandom numbers.</span >
7879- <span class =" signature " >[ ` pareto1( alpha, beta ) ` ] [ @stdlib/random/base/pareto-type1 ] </span ><span class =" delimiter " >: </span ><span class =" description " >Pareto (Type I) distributed pseudorandom numbers.</span >
@@ -81,6 +82,7 @@ The namespace contains the following PRNGs:
8182- <span class =" signature " >[ ` randn() ` ] [ @stdlib/random/base/randn ] </span ><span class =" delimiter " >: </span ><span class =" description " >standard normally distributed pseudorandom numbers.</span >
8283- <span class =" signature " >[ ` randu() ` ] [ @stdlib/random/base/randu ] </span ><span class =" delimiter " >: </span ><span class =" description " >uniformly distributed pseudorandom numbers between 0 and 1.</span >
8384- <span class =" signature " >[ ` rayleigh( sigma ) ` ] [ @stdlib/random/base/rayleigh ] </span ><span class =" delimiter " >: </span ><span class =" description " >Rayleigh distributed pseudorandom numbers.</span >
85+ - <span class =" signature " >[ ` reviveBasePRNG( key, value ) ` ] [ @stdlib/random/base/reviver ] </span ><span class =" delimiter " >: </span ><span class =" description " >revive a JSON-serialized pseudorandom number generator (PRNG).</span >
8486- <span class =" signature " >[ ` t( v ) ` ] [ @stdlib/random/base/t ] </span ><span class =" delimiter " >: </span ><span class =" description " >Student's t-distributed pseudorandom numbers.</span >
8587- <span class =" signature " >[ ` triangular( a, b, c ) ` ] [ @stdlib/random/base/triangular ] </span ><span class =" delimiter " >: </span ><span class =" description " >triangular distributed pseudorandom numbers.</span >
8688- <span class =" signature " >[ ` uniform( a, b ) ` ] [ @stdlib/random/base/uniform ] </span ><span class =" delimiter " >: </span ><span class =" description " >uniformly distributed pseudorandom numbers.</span >
@@ -168,85 +170,89 @@ console.log( objectKeys( random ) );
168170
169171<!-- <toc-links> -->
170172
171- [ @stdlib/random/base/arcsine ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/arcsine
173+ [ @stdlib/random/base/arcsine ] : https://github.com/stdlib-js/stdlib
174+
175+ [ @stdlib/random/base/bernoulli ] : https://github.com/stdlib-js/stdlib
176+
177+ [ @stdlib/random/base/beta ] : https://github.com/stdlib-js/stdlib
172178
173- [ @stdlib/random/base/bernoulli ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/bernoulli
179+ [ @stdlib/random/base/betaprime ] : https://github.com/stdlib-js/stdlib
174180
175- [ @stdlib/random/base/beta ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/beta
181+ [ @stdlib/random/base/binomial ] : https://github.com/stdlib-js/stdlib
176182
177- [ @stdlib/random/base/betaprime ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/betaprime
183+ [ @stdlib/random/base/box-muller ] : https://github.com/stdlib-js/stdlib
178184
179- [ @stdlib/random/base/binomial ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/binomial
185+ [ @stdlib/random/base/cauchy ] : https://github.com/stdlib-js/stdlib
180186
181- [ @stdlib/random/base/box-muller ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/box-muller
187+ [ @stdlib/random/base/chi ] : https://github.com/stdlib-js/stdlib
182188
183- [ @stdlib/random/base/cauchy ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/cauchy
189+ [ @stdlib/random/base/chisquare ] : https://github.com/stdlib-js/stdlib
184190
185- [ @stdlib/random/base/chi ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/chi
191+ [ @stdlib/random/base/cosine ] : https://github.com/stdlib-js/stdlib
186192
187- [ @stdlib/random/base/chisquare ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/chisquare
193+ [ @stdlib/random/base/discrete-uniform ] : https://github.com/stdlib-js/stdlib
188194
189- [ @stdlib/random/base/cosine ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/cosine
195+ [ @stdlib/random/base/erlang ] : https://github.com/stdlib-js/stdlib
190196
191- [ @stdlib/random/base/discrete-uniform ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/discrete-uniform
197+ [ @stdlib/random/base/exponential ] : https://github.com/stdlib-js/stdlib
192198
193- [ @stdlib/random/base/erlang ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/erlang
199+ [ @stdlib/random/base/f ] : https://github.com/stdlib-js/stdlib
194200
195- [ @stdlib/random/base/exponential ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/exponential
201+ [ @stdlib/random/base/frechet ] : https://github.com/stdlib-js/stdlib
196202
197- [ @stdlib/random/base/f ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/f
203+ [ @stdlib/random/base/gamma ] : https://github.com/stdlib-js/stdlib
198204
199- [ @stdlib/random/base/frechet ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/frechet
205+ [ @stdlib/random/base/geometric ] : https://github.com/stdlib-js/stdlib
200206
201- [ @stdlib/random/base/gamma ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/gamma
207+ [ @stdlib/random/base/gumbel ] : https://github.com/stdlib-js/stdlib
202208
203- [ @stdlib/random/base/geometric ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/geometric
209+ [ @stdlib/random/base/hypergeometric ] : https://github.com/stdlib-js/stdlib
204210
205- [ @stdlib/random/base/gumbel ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/gumbel
211+ [ @stdlib/random/base/improved-ziggurat ] : https://github.com/stdlib-js/stdlib
206212
207- [ @stdlib/random/base/hypergeometric ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/hypergeometric
213+ [ @stdlib/random/base/invgamma ] : https://github.com/stdlib-js/stdlib
208214
209- [ @stdlib/random/base/improved-ziggurat ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/improved-ziggurat
215+ [ @stdlib/random/base/kumaraswamy ] : https://github.com/stdlib-js/stdlib
210216
211- [ @stdlib/random/base/invgamma ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/invgamma
217+ [ @stdlib/random/base/laplace ] : https://github.com/stdlib-js/stdlib
212218
213- [ @stdlib/random/base/kumaraswamy ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/kumaraswamy
219+ [ @stdlib/random/base/levy ] : https://github.com/stdlib-js/stdlib
214220
215- [ @stdlib/random/base/laplace ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/laplace
221+ [ @stdlib/random/base/logistic ] : https://github.com/stdlib-js/stdlib
216222
217- [ @stdlib/random/base/levy ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/levy
223+ [ @stdlib/random/base/lognormal ] : https://github.com/stdlib-js/stdlib
218224
219- [ @stdlib/random/base/logistic ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/logistic
225+ [ @stdlib/random/base/minstd-shuffle ] : https://github.com/stdlib-js/stdlib
220226
221- [ @stdlib/random/base/lognormal ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/lognormal
227+ [ @stdlib/random/base/minstd ] : https://github.com/stdlib-js/stdlib
222228
223- [ @stdlib/random/base/minstd ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/minstd
229+ [ @stdlib/random/base/mt19937 ] : https://github.com/stdlib-js/stdlib
224230
225- [ @stdlib/random/base/minstd-shuffle ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/minstd-shuffle
231+ [ @stdlib/random/base/negative-binomial ] : https://github.com/stdlib-js/stdlib
226232
227- [ @stdlib/random/base/negative-binomial ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/negative-binomial
233+ [ @stdlib/random/base/normal ] : https://github.com/stdlib-js/stdlib
228234
229- [ @stdlib/random/base/normal ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/normal
235+ [ @stdlib/random/base/pareto-type1 ] : https://github.com/stdlib-js/stdlib
230236
231- [ @stdlib/random/base/pareto-type1 ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/pareto-type1
237+ [ @stdlib/random/base/poisson ] : https://github.com/stdlib-js/stdlib
232238
233- [ @stdlib/random/base/poisson ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/poisson
239+ [ @stdlib/random/base/randi ] : https://github.com/stdlib-js/stdlib
234240
235- [ @stdlib/random/base/randi ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/randi
241+ [ @stdlib/random/base/randn ] : https://github.com/stdlib-js/stdlib
236242
237- [ @stdlib/random/base/randn ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/randn
243+ [ @stdlib/random/base/randu ] : https://github.com/stdlib-js/stdlib
238244
239- [ @stdlib/random/base/randu ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/randu
245+ [ @stdlib/random/base/rayleigh ] : https://github.com/stdlib-js/stdlib
240246
241- [ @stdlib/random/base/rayleigh ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/rayleigh
247+ [ @stdlib/random/base/reviver ] : https://github.com/stdlib-js/stdlib
242248
243- [ @stdlib/random/base/t ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/t
249+ [ @stdlib/random/base/t ] : https://github.com/stdlib-js/stdlib
244250
245- [ @stdlib/random/base/triangular ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/triangular
251+ [ @stdlib/random/base/triangular ] : https://github.com/stdlib-js/stdlib
246252
247- [ @stdlib/random/base/uniform ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/uniform
253+ [ @stdlib/random/base/uniform ] : https://github.com/stdlib-js/stdlib
248254
249- [ @stdlib/random/base/weibull ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/base/weibull
255+ [ @stdlib/random/base/weibull ] : https://github.com/stdlib-js/stdlib
250256
251257<!-- </toc-links> -->
252258
0 commit comments