From dbc6000ae3291381845dcd489f1086363213ebff Mon Sep 17 00:00:00 2001
From: Planeshifter <1913638+Planeshifter@users.noreply.github.com>
Date: Fri, 30 Jan 2026 03:15:05 +0000
Subject: [PATCH] docs: update namespace table of contents
Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
---
lib/node_modules/@stdlib/stats/base/ndarray/README.md | 6 ++++++
lib/node_modules/@stdlib/stats/strided/README.md | 3 +++
2 files changed, 9 insertions(+)
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/README.md b/lib/node_modules/@stdlib/stats/base/ndarray/README.md
index c3479c8a0687..bade65e4fdec 100644
--- a/lib/node_modules/@stdlib/stats/base/ndarray/README.md
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/README.md
@@ -116,6 +116,7 @@ The namespace exposes the following APIs:
- [`minabs( arrays )`][@stdlib/stats/base/ndarray/minabs]: compute the minimum absolute value of a one-dimensional ndarray.
- [`minsorted( arrays )`][@stdlib/stats/base/ndarray/minsorted]: compute the minimum value of a sorted one-dimensional ndarray.
- [`mskmax( arrays )`][@stdlib/stats/base/ndarray/mskmax]: calculate the maximum value of a one-dimensional ndarray according to a mask.
+- [`mskmaxabs( arrays )`][@stdlib/stats/base/ndarray/mskmaxabs]: calculate the maximum absolute value of a one-dimensional ndarray according to a mask.
- [`mskmidrange( arrays )`][@stdlib/stats/base/ndarray/mskmidrange]: calculate the mid-range of a one-dimensional ndarray according to a mask.
- [`mskmin( arrays )`][@stdlib/stats/base/ndarray/mskmin]: calculate the minimum value of a one-dimensional ndarray according to a mask.
- [`mskrange( arrays )`][@stdlib/stats/base/ndarray/mskrange]: calculate the range of a one-dimensional ndarray according to a mask.
@@ -166,6 +167,7 @@ The namespace exposes the following APIs:
- [`sminabs( arrays )`][@stdlib/stats/base/ndarray/sminabs]: compute the minimum absolute value of a one-dimensional single-precision floating-point ndarray.
- [`sminsorted( arrays )`][@stdlib/stats/base/ndarray/sminsorted]: compute the minimum value of a sorted one-dimensional single-precision floating-point ndarray.
- [`smskmax( arrays )`][@stdlib/stats/base/ndarray/smskmax]: calculate the maximum value of a one-dimensional single-precision floating-point ndarray according to a mask.
+- [`smskmaxabs( arrays )`][@stdlib/stats/base/ndarray/smskmaxabs]: calculate the maximum absolute value of a one-dimensional single-precision floating-point ndarray according to a mask.
- [`smskmidrange( arrays )`][@stdlib/stats/base/ndarray/smskmidrange]: calculate the mid-range of a one-dimensional single-precision floating-point ndarray according to a mask.
- [`smskmin( arrays )`][@stdlib/stats/base/ndarray/smskmin]: calculate the minimum value of a one-dimensional single-precision floating-point ndarray according to a mask.
- [`smskrange( arrays )`][@stdlib/stats/base/ndarray/smskrange]: calculate the range of a one-dimensional single-precision floating-point ndarray according to a mask.
@@ -385,6 +387,8 @@ console.log( objectKeys( ns ) );
[@stdlib/stats/base/ndarray/mskmax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/mskmax
+[@stdlib/stats/base/ndarray/mskmaxabs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/mskmaxabs
+
[@stdlib/stats/base/ndarray/mskmidrange]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/mskmidrange
[@stdlib/stats/base/ndarray/mskmin]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/mskmin
@@ -485,6 +489,8 @@ console.log( objectKeys( ns ) );
[@stdlib/stats/base/ndarray/smskmax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/smskmax
+[@stdlib/stats/base/ndarray/smskmaxabs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/smskmaxabs
+
[@stdlib/stats/base/ndarray/smskmidrange]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/smskmidrange
[@stdlib/stats/base/ndarray/smskmin]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/ndarray/smskmin
diff --git a/lib/node_modules/@stdlib/stats/strided/README.md b/lib/node_modules/@stdlib/stats/strided/README.md
index cd3e7b464588..8e081d006d11 100644
--- a/lib/node_modules/@stdlib/stats/strided/README.md
+++ b/lib/node_modules/@stdlib/stats/strided/README.md
@@ -86,6 +86,7 @@ The namespace exports the following:
- [`dminabs( N, x, strideX )`][@stdlib/stats/strided/dminabs]: calculate the minimum absolute value of a double-precision floating-point strided array.
- [`dminsorted( N, x, strideX )`][@stdlib/stats/strided/dminsorted]: calculate the minimum value of a sorted double-precision floating-point strided array.
- [`dmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskmax]: calculate the maximum value of a double-precision floating-point strided array according to a mask.
+- [`dmskmaxabs( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskmaxabs]: calculate the maximum absolute value of a double-precision floating-point strided array according to a mask.
- [`dmskmidrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskmidrange]: calculate the mid-range of a double-precision floating-point strided array according to a mask.
- [`dmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskmin]: calculate the minimum value of a double-precision floating-point strided array according to a mask.
- [`dmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/strided/dmskrange]: calculate the range of a double-precision floating-point strided array according to a mask.
@@ -397,6 +398,8 @@ console.log( objectKeys( ns ) );
[@stdlib/stats/strided/dmskmax]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dmskmax
+[@stdlib/stats/strided/dmskmaxabs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dmskmaxabs
+
[@stdlib/stats/strided/dmskmidrange]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dmskmidrange
[@stdlib/stats/strided/dmskmin]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dmskmin