From 54898d8ef6e5baf06fadf269c1e144cd3e1e2aba Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Sun, 7 Dec 2025 02:38:37 +0000 Subject: [PATCH 1/2] docs: update related packages sections --- lib/node_modules/@stdlib/math/base/special/log1pf/README.md | 2 -- .../@stdlib/stats/base/ndarray/meanwd/README.md | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/log1pf/README.md b/lib/node_modules/@stdlib/math/base/special/log1pf/README.md index db443af26b2c..cfb02a54f6e3 100644 --- a/lib/node_modules/@stdlib/math/base/special/log1pf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/log1pf/README.md @@ -192,8 +192,6 @@ int main( void ) { -[@stdlib/math/base/special/lnf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/lnf - diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md b/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md index ff937c4496ec..925d5fde5bb2 100644 --- a/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md +++ b/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md @@ -27,7 +27,7 @@ limitations under the License. The [arithmetic mean][arithmetic-mean] is defined as - + ```math \mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i ``` @@ -46,7 +46,7 @@ The [arithmetic mean][arithmetic-mean] is defined as
## Usage - + ```javascript var meanwd = require( '@stdlib/stats/base/ndarray/meanwd' ); ``` @@ -54,7 +54,7 @@ var meanwd = require( '@stdlib/stats/base/ndarray/meanwd' ); #### meanwd( arrays ) Computes the [arithmetic mean][arithmetic-mean] of a one-dimensional ndarray using Welford's algorithm. - + ```javascript var ndarray = require( '@stdlib/ndarray/base/ctor' ); From 8eb23c09380a8a8124da629de5d0cc0ab2ed4c63 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 6 Dec 2025 20:28:25 -0800 Subject: [PATCH 2/2] docs: fix link Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/log1pf/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/log1pf/README.md b/lib/node_modules/@stdlib/math/base/special/log1pf/README.md index cfb02a54f6e3..32d7c793b920 100644 --- a/lib/node_modules/@stdlib/math/base/special/log1pf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/log1pf/README.md @@ -190,6 +190,8 @@ int main( void ) {