From 40dd6f55333fb9bf6b1ced2cc19dadaacd3b47d5 Mon Sep 17 00:00:00 2001
From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
Date: Tue, 12 May 2026 03:02:03 +0000
Subject: [PATCH] docs: update related packages sections
---
.../@stdlib/random/array/lognormal/README.md | 3 +++
.../@stdlib/random/base/chisquare/README.md | 3 +++
.../@stdlib/random/base/invgamma/README.md | 3 +++
.../@stdlib/random/base/normal/README.md | 3 +++
.../@stdlib/random/chisquare/README.md | 16 ++++++++++++++++
5 files changed, 28 insertions(+)
diff --git a/lib/node_modules/@stdlib/random/array/lognormal/README.md b/lib/node_modules/@stdlib/random/array/lognormal/README.md
index c7c0a7c4ebcd..d28c8a15f4b7 100644
--- a/lib/node_modules/@stdlib/random/array/lognormal/README.md
+++ b/lib/node_modules/@stdlib/random/array/lognormal/README.md
@@ -358,6 +358,7 @@ logEach( '%f', x4 );
## See Also
+- [`@stdlib/random/lognormal`][@stdlib/random/lognormal]: generate pseudorandom numbers drawn from a lognormal distribution.
- [`@stdlib/random/base/lognormal`][@stdlib/random/base/lognormal]: log-normally distributed pseudorandom numbers.
- [`@stdlib/random/strided/lognormal`][@stdlib/random/strided/lognormal]: fill a strided array with pseudorandom numbers drawn from a lognormal distribution.
@@ -379,6 +380,8 @@ logEach( '%f', x4 );
+[@stdlib/random/lognormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/lognormal
+
[@stdlib/random/strided/lognormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/strided/lognormal
diff --git a/lib/node_modules/@stdlib/random/base/chisquare/README.md b/lib/node_modules/@stdlib/random/base/chisquare/README.md
index c3c0af1a87e3..9740a43dab64 100644
--- a/lib/node_modules/@stdlib/random/base/chisquare/README.md
+++ b/lib/node_modules/@stdlib/random/base/chisquare/README.md
@@ -405,6 +405,7 @@ for ( i = 0; i < 100; i++ ) {
- [`@stdlib/random/array/chisquare`][@stdlib/random/array/chisquare]: create an array containing pseudorandom numbers drawn from a chi-square distribution.
- [`@stdlib/random/iter/chisquare`][@stdlib/random/iter/chisquare]: create an iterator for generating pseudorandom numbers drawn from a chi-square distribution.
- [`@stdlib/random/streams/chisquare`][@stdlib/random/streams/chisquare]: create a readable stream for generating pseudorandom numbers drawn from a chi-square distribution.
+- [`@stdlib/random/chisquare`][@stdlib/random/chisquare]: generate pseudorandom numbers drawn from a chi-square distribution.
@@ -426,6 +427,8 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/random/streams/chisquare]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/chisquare
+[@stdlib/random/chisquare]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/chisquare
+
diff --git a/lib/node_modules/@stdlib/random/base/invgamma/README.md b/lib/node_modules/@stdlib/random/base/invgamma/README.md
index b9573e44e064..c8f5d04ada1b 100644
--- a/lib/node_modules/@stdlib/random/base/invgamma/README.md
+++ b/lib/node_modules/@stdlib/random/base/invgamma/README.md
@@ -415,6 +415,7 @@ for ( i = 0; i < 100; i++ ) {
- [`@stdlib/random/array/invgamma`][@stdlib/random/array/invgamma]: create an array containing pseudorandom numbers drawn from an inverse gamma distribution.
- [`@stdlib/random/iter/invgamma`][@stdlib/random/iter/invgamma]: create an iterator for generating pseudorandom numbers drawn from an inverse gamma distribution.
- [`@stdlib/random/streams/invgamma`][@stdlib/random/streams/invgamma]: create a readable stream for generating pseudorandom numbers drawn from an inverse gamma distribution.
+- [`@stdlib/random/invgamma`][@stdlib/random/invgamma]: generate pseudorandom numbers drawn from an inverse gamma distribution.
@@ -436,6 +437,8 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/random/streams/invgamma]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/invgamma
+[@stdlib/random/invgamma]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/invgamma
+
diff --git a/lib/node_modules/@stdlib/random/base/normal/README.md b/lib/node_modules/@stdlib/random/base/normal/README.md
index 1d2871356920..270bdee35ae8 100644
--- a/lib/node_modules/@stdlib/random/base/normal/README.md
+++ b/lib/node_modules/@stdlib/random/base/normal/README.md
@@ -409,6 +409,7 @@ for ( i = 0; i < 100; i++ ) {
- [`@stdlib/random/array/normal`][@stdlib/random/array/normal]: create an array containing pseudorandom numbers drawn from a normal distribution.
- [`@stdlib/random/iter/normal`][@stdlib/random/iter/normal]: create an iterator for generating pseudorandom numbers drawn from a normal distribution.
- [`@stdlib/random/streams/normal`][@stdlib/random/streams/normal]: create a readable stream for generating pseudorandom numbers drawn from a normal distribution.
+- [`@stdlib/random/normal`][@stdlib/random/normal]: generate pseudorandom numbers drawn from a normal distribution.
@@ -430,6 +431,8 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/random/streams/normal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/normal
+[@stdlib/random/normal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/normal
+
diff --git a/lib/node_modules/@stdlib/random/chisquare/README.md b/lib/node_modules/@stdlib/random/chisquare/README.md
index 19d835bd2add..9f6280e08eb9 100644
--- a/lib/node_modules/@stdlib/random/chisquare/README.md
+++ b/lib/node_modules/@stdlib/random/chisquare/README.md
@@ -358,6 +358,14 @@ logEach( '%f, %f, %f', arr[ 0 ], arr[ 1 ], arr[ 2 ] );
@@ -378,6 +386,14 @@ logEach( '%f, %f, %f', arr[ 0 ], arr[ 1 ], arr[ 2 ] );
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/broadcast-shapes
+
+
+[@stdlib/random/array/chisquare]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/chisquare
+
+[@stdlib/random/strided/chisquare]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/strided/chisquare
+
+
+