diff --git a/lib/node_modules/@stdlib/random/array/README.md b/lib/node_modules/@stdlib/random/array/README.md index 4e4468408c81..8992fac12965 100644 --- a/lib/node_modules/@stdlib/random/array/README.md +++ b/lib/node_modules/@stdlib/random/array/README.md @@ -79,6 +79,7 @@ The namespace contains the following: - [`randu( len[, options] )`][@stdlib/random/array/randu]: create an array containing uniformly distributed pseudorandom numbers between `0` and `1`. - [`rayleigh( len, sigma[, options] )`][@stdlib/random/array/rayleigh]: create an array containing pseudorandom numbers drawn from a Rayleigh distribution. - [`t( len, v[, options] )`][@stdlib/random/array/t]: create an array containing pseudorandom numbers drawn from a Student's t-distribution. +- [`tools`][@stdlib/random/array/tools]: pseudorandom number generator (PRNG) array creation function tools. - [`triangular( len, a, b, c[, options] )`][@stdlib/random/array/triangular]: create an array containing pseudorandom numbers drawn from a triangular distribution. - [`uniform( len, a, b[, options] )`][@stdlib/random/array/uniform]: create an array containing pseudorandom numbers drawn from a continuous uniform distribution. - [`weibull( len, k, lambda[, options] )`][@stdlib/random/array/weibull]: create an array containing pseudorandom numbers drawn from a Weibull distribution. @@ -223,6 +224,8 @@ out = random( 10 ); [@stdlib/random/array/t]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/t +[@stdlib/random/array/tools]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/tools + [@stdlib/random/array/triangular]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/triangular [@stdlib/random/array/uniform]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/uniform diff --git a/lib/node_modules/@stdlib/random/tools/README.md b/lib/node_modules/@stdlib/random/tools/README.md index 2ab48a74f3cd..3f8307c3dfe1 100644 --- a/lib/node_modules/@stdlib/random/tools/README.md +++ b/lib/node_modules/@stdlib/random/tools/README.md @@ -53,6 +53,13 @@ The namespace exports the following: +