From 7ec2334c6a3878b95114de2ed3b18f5f370fb208 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 8 Dec 2024 01:15:55 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 3 ++- base/special/acotd/README.md | 17 +++++++++++++++++ base/special/acscdf/README.md | 17 +++++++++++++++++ base/special/cceiln/README.md | 2 +- base/special/minmaxn/README.md | 14 ++++++++++++++ iter/special/spence/README.md | 2 +- strided/ops/sub-by/README.md | 18 ++++++++++++++++++ 7 files changed, 70 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a3216383..2a988d360 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-12-07) +## Unreleased (2024-12-08)
@@ -2662,6 +2662,7 @@ A total of 5 people contributed to this release. Thank you to the following cont
+- [`7e8187a`](https://github.com/stdlib-js/stdlib/commit/7e8187a766886c2fb9cdc356cf781f0a1802172c) - **docs:** update related packages sections [(#3368)](https://github.com/stdlib-js/stdlib/pull/3368) _(by stdlib-bot)_ - [`ef06a2d`](https://github.com/stdlib-js/stdlib/commit/ef06a2dda4cc6b272088a7a39c30e48dbf8c6ce4) - **feat:** add C implementation for `math/base/special/dirichlet-eta` [(#3282)](https://github.com/stdlib-js/stdlib/pull/3282) _(by Gunj Joshi, stdlib-bot)_ - [`4bc5c7e`](https://github.com/stdlib-js/stdlib/commit/4bc5c7efda9452e0fb18a2cfe59bf89a4d180534) - **refactor:** use external constant in `math/base/special/tribonacci` [(#3324)](https://github.com/stdlib-js/stdlib/pull/3324) _(by Gunj Joshi)_ - [`299517a`](https://github.com/stdlib-js/stdlib/commit/299517a7a1e3494b93b2368c4f135a5826f88090) - **docs:** update examples in `math/base/special/lcmf` [(#3319)](https://github.com/stdlib-js/stdlib/pull/3319) _(by Gunj Joshi, Athan Reines)_ diff --git a/base/special/acotd/README.md b/base/special/acotd/README.md index 76d78a0bb..d7545783c 100644 --- a/base/special/acotd/README.md +++ b/base/special/acotd/README.md @@ -155,6 +155,15 @@ int main( void ) { @@ -167,6 +176,14 @@ int main( void ) { +[@stdlib/math/base/special/acot]: https://github.com/stdlib-js/math/tree/main/base/special/acot + +[@stdlib/math/base/special/acoth]: https://github.com/stdlib-js/math/tree/main/base/special/acoth + +[@stdlib/math/base/special/atand]: https://github.com/stdlib-js/math/tree/main/base/special/atand + +[@stdlib/math/base/special/cotd]: https://github.com/stdlib-js/math/tree/main/base/special/cotd +
diff --git a/base/special/acscdf/README.md b/base/special/acscdf/README.md index 9fa4dacec..7e2ac8c72 100644 --- a/base/special/acscdf/README.md +++ b/base/special/acscdf/README.md @@ -174,6 +174,15 @@ int main( void ) { @@ -186,6 +195,14 @@ int main( void ) { +[@stdlib/math/base/special/acsc]: https://github.com/stdlib-js/math/tree/main/base/special/acsc + +[@stdlib/math/base/special/acsch]: https://github.com/stdlib-js/math/tree/main/base/special/acsch + +[@stdlib/math/base/special/asecdf]: https://github.com/stdlib-js/math/tree/main/base/special/asecdf + +[@stdlib/math/base/special/asindf]: https://github.com/stdlib-js/math/tree/main/base/special/asindf +
diff --git a/base/special/cceiln/README.md b/base/special/cceiln/README.md index b834fc9b4..ce53c4e86 100644 --- a/base/special/cceiln/README.md +++ b/base/special/cceiln/README.md @@ -265,7 +265,7 @@ int main() { ## See Also -- [`@stdlib/math/base/special/cceil`][@stdlib/math/base/special/cceil]: round a double-precision complex floating-point number toward positive infinity. +- [`@stdlib/math/base/special/cceil`][@stdlib/math/base/special/cceil]: round each component of a double-precision complex floating-point number toward positive infinity. - [`@stdlib/math/base/special/cfloorn`][@stdlib/math/base/special/cfloorn]: round each component of a double-precision complex floating-point number to the nearest multiple of 10^n toward negative infinity. - [`@stdlib/math/base/special/croundn`][@stdlib/math/base/special/croundn]: round each component of a double-precision complex floating-point number to the nearest multiple of 10^n. diff --git a/base/special/minmaxn/README.md b/base/special/minmaxn/README.md index 6a9bcc62e..eb8b5a7d1 100644 --- a/base/special/minmaxn/README.md +++ b/base/special/minmaxn/README.md @@ -138,6 +138,14 @@ for ( i = 0; i < 100; i++ ) { @@ -148,6 +156,12 @@ for ( i = 0; i < 100; i++ ) { +[@stdlib/math/base/special/maxn]: https://github.com/stdlib-js/math/tree/main/base/special/maxn + +[@stdlib/math/base/special/minn]: https://github.com/stdlib-js/math/tree/main/base/special/minn + +[@stdlib/math/base/special/minmaxabsn]: https://github.com/stdlib-js/math/tree/main/base/special/minmaxabsn + diff --git a/iter/special/spence/README.md b/iter/special/spence/README.md index 57d40a448..618a4d1ab 100644 --- a/iter/special/spence/README.md +++ b/iter/special/spence/README.md @@ -133,7 +133,7 @@ while ( true ) { ## See Also -- [`@stdlib/math/base/special/spence`][@stdlib/math/base/special/spence]: spence’s function, also known as the dilogarithm. +- [`@stdlib/math/base/special/spence`][@stdlib/math/base/special/spence]: spence's function, also known as the dilogarithm. diff --git a/strided/ops/sub-by/README.md b/strided/ops/sub-by/README.md index 1f2916861..91d019e48 100644 --- a/strided/ops/sub-by/README.md +++ b/strided/ops/sub-by/README.md @@ -241,6 +241,14 @@ console.log( z ); @@ -255,6 +263,16 @@ console.log( z ); [@stdlib/math/base/ops/sub]: https://github.com/stdlib-js/math/tree/main/base/ops/sub + + +[@stdlib/math/strided/ops/sub]: https://github.com/stdlib-js/math/tree/main/strided/ops/sub + +[@stdlib/math/strided/ops/add-by]: https://github.com/stdlib-js/math/tree/main/strided/ops/add-by + +[@stdlib/math/strided/ops/mul-by]: https://github.com/stdlib-js/math/tree/main/strided/ops/mul-by + + +