From 2e8f7ebd465bb244a2a06fb0d63adbee25aef539 Mon Sep 17 00:00:00 2001 From: Planeshifter <1913638+Planeshifter@users.noreply.github.com> Date: Sun, 16 Mar 2025 02:42:18 +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/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/README.md b/lib/node_modules/@stdlib/stats/base/README.md index 75209872be3c..2ee98172684b 100644 --- a/lib/node_modules/@stdlib/stats/base/README.md +++ b/lib/node_modules/@stdlib/stats/base/README.md @@ -192,7 +192,7 @@ The namespace contains the following statistical functions: - [`smeanlipw( N, x, stride )`][@stdlib/stats/base/smeanlipw]: calculate the arithmetic mean of a single-precision floating-point strided array using a one-pass trial mean algorithm with pairwise summation. - [`smeanors( N, x, stride )`][@stdlib/stats/base/smeanors]: calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation. - [`smeanpn( N, x, stride )`][@stdlib/stats/base/smeanpn]: calculate the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm. -- [`smeanpw( N, x, stride )`][@stdlib/stats/base/smeanpw]: calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation. +- [`smeanpw( N, x, strideX )`][@stdlib/stats/base/smeanpw]: calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation. - [`smeanwd( N, x, strideX )`][@stdlib/stats/base/smeanwd]: calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm. - [`smediansorted( N, x, strideX )`][@stdlib/stats/base/smediansorted]: calculate the median value of a sorted single-precision floating-point strided array. - [`smidrange( N, x, strideX )`][@stdlib/stats/base/smidrange]: calculate the mid-range of a single-precision floating-point strided array. @@ -229,7 +229,7 @@ The namespace contains the following statistical functions: - [`srange( N, x, strideX )`][@stdlib/stats/base/srange]: calculate the range of a single-precision floating-point strided array. - [`sstdev( N, correction, x, stride )`][@stdlib/stats/base/sstdev]: calculate the standard deviation of a single-precision floating-point strided array. - [`sstdevch( N, correction, x, strideX )`][@stdlib/stats/base/sstdevch]: calculate the standard deviation of a single-precision floating-point strided array using a one-pass trial mean algorithm. -- [`sstdevpn( N, correction, x, stride )`][@stdlib/stats/base/sstdevpn]: calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm. +- [`sstdevpn( N, correction, x, strideX )`][@stdlib/stats/base/sstdevpn]: calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm. - [`sstdevtk( N, correction, x, strideX )`][@stdlib/stats/base/sstdevtk]: calculate the standard deviation of a single-precision floating-point strided array using a one-pass textbook algorithm. - [`sstdevwd( N, correction, x, stride )`][@stdlib/stats/base/sstdevwd]: calculate the standard deviation of a single-precision floating-point strided array using Welford's algorithm. - [`sstdevyc( N, correction, x, strideX )`][@stdlib/stats/base/sstdevyc]: calculate the standard deviation of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.