diff --git a/CHANGELOG.md b/CHANGELOG.md index f3699292b..b21235783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5515,6 +5515,7 @@ A total of 29 people contributed to this release. Thank you to the following con
+- [`9dc29b4`](https://github.com/stdlib-js/stdlib/commit/9dc29b4d2e6eb5ba0b2625c3bfe9f50034a3ed99) - **docs:** add sub-namespace sections and update namespace table of contents _(by Philipp Burckhardt)_ - [`8de8d90`](https://github.com/stdlib-js/stdlib/commit/8de8d90b8a5d72f7c2e57ae21593be5f5f1eb8e7) - **refactor:** perform explicit cast [(#2642)](https://github.com/stdlib-js/stdlib/pull/2642) _(by Gunj Joshi)_ - [`6a0cbd9`](https://github.com/stdlib-js/stdlib/commit/6a0cbd9c10f0895d795be449fe1ea2a456f2683a) - **test:** fix tests for native implementation [(#2641)](https://github.com/stdlib-js/stdlib/pull/2641) _(by Gunj Joshi)_ - [`ead1c3b`](https://github.com/stdlib-js/stdlib/commit/ead1c3b780527d8068d9c076e85688be94d53775) - **chore:** update package meta data [(#2640)](https://github.com/stdlib-js/stdlib/pull/2640) _(by stdlib-bot, Athan Reines)_ diff --git a/base/ops/README.md b/base/ops/README.md index eedb55c38..b8da86e47 100644 --- a/base/ops/README.md +++ b/base/ops/README.md @@ -50,11 +50,7 @@ The namespace contains the following functions: - [`add4( x, y, z, w )`][@stdlib/math/base/ops/add4]: compute the sum of four double-precision floating-point numbers. - [`add5( x, y, z, w, u )`][@stdlib/math/base/ops/add5]: compute the sum of five double-precision floating-point numbers. - [`addf( x, y )`][@stdlib/math/base/ops/addf]: compute the sum of two single-precision floating-point numbers. -- [`cadd( z1, z2 )`][@stdlib/complex/float64/base/add]: add two double-precision complex floating-point numbers. -- [`caddf( z1, z2 )`][@stdlib/complex/float32/base/add]: add two single-precision complex floating-point numbers. - [`cdiv( z1, z2 )`][@stdlib/math/base/ops/cdiv]: divide two double-precision complex floating-point numbers. -- [`cmul( z1, z2 )`][@stdlib/complex/float64/base/mul]: multiply two double-precision complex floating-point numbers. -- [`cmulf( z1, z2 )`][@stdlib/complex/float32/base/mul]: multiply two single-precision complex floating-point numbers. - [`cneg( z )`][@stdlib/math/base/ops/cneg]: negate a double-precision complex floating-point number. - [`cnegf( z )`][@stdlib/math/base/ops/cnegf]: negate a single-precision complex floating-point number. - [`csub( z1, z2 )`][@stdlib/math/base/ops/csub]: subtract two double-precision complex floating-point numbers. @@ -154,16 +150,8 @@ console.log( ns.imuldw( 0x80000000|0, 0x40000000|0 ) ); [@stdlib/math/base/ops/addf]: https://github.com/stdlib-js/math/tree/main/base/ops/addf -[@stdlib/complex/float64/base/add]: https://github.com/stdlib-js/complex-float64-base-add - -[@stdlib/complex/float32/base/add]: https://github.com/stdlib-js/complex-float32-base-add - [@stdlib/math/base/ops/cdiv]: https://github.com/stdlib-js/math/tree/main/base/ops/cdiv -[@stdlib/complex/float64/base/mul]: https://github.com/stdlib-js/complex-float64-base-mul - -[@stdlib/complex/float32/base/mul]: https://github.com/stdlib-js/complex-float32-base-mul - [@stdlib/math/base/ops/cneg]: https://github.com/stdlib-js/math/tree/main/base/ops/cneg [@stdlib/math/base/ops/cnegf]: https://github.com/stdlib-js/math/tree/main/base/ops/cnegf diff --git a/base/special/README.md b/base/special/README.md index 3f6f234b5..fcfad80f3 100644 --- a/base/special/README.md +++ b/base/special/README.md @@ -162,7 +162,7 @@ var fcns = special; - [`ceilb( x, n, b )`][@stdlib/math/base/special/ceilb]: round a numeric value to the nearest multiple of b^n toward positive infinity. - [`ceilf( x )`][@stdlib/math/base/special/ceilf]: round a single-precision floating-point number toward positive infinity. - [`ceiln( x, n )`][@stdlib/math/base/special/ceiln]: round a numeric value to the nearest multiple of 10^n toward positive infinity. -- [`ceilsd( x, n[, b] )`][@stdlib/math/base/special/ceilsd]: round a numeric value to the nearest number toward positive infinity with N significant figures. +- [`ceilsd( x, n, b )`][@stdlib/math/base/special/ceilsd]: round a numeric value to the nearest number toward positive infinity with N significant figures. - [`cfloor( z )`][@stdlib/math/base/special/cfloor]: round a double-precision complex floating-point number toward negative infinity. - [`cfloorn( z, n )`][@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. - [`clamp( v, min, max )`][@stdlib/math/base/special/clamp]: restrict a double-precision floating-point number to a specified range. @@ -176,7 +176,7 @@ var fcns = special; - [`floorb( x, n, b )`][@stdlib/math/base/special/floorb]: round a numeric value to the nearest multiple of b^n toward negative infinity. - [`floorf( x )`][@stdlib/math/base/special/floorf]: round a single-precision floating-point numeric value toward negative infinity. - [`floorn( x, n )`][@stdlib/math/base/special/floorn]: round a double-precision floating-point number to the nearest multiple of 10^n toward negative infinity. -- [`floorsd( x, n[, b] )`][@stdlib/math/base/special/floorsd]: round a numeric value to the nearest number toward negative infinity with N significant figures. +- [`floorsd( x, n, b )`][@stdlib/math/base/special/floorsd]: round a numeric value to the nearest number toward negative infinity with N significant figures. - [`labs( x )`][@stdlib/math/base/special/labs]: compute an absolute value of a signed 32-bit integer. - [`maxabs( x, y )`][@stdlib/math/base/special/maxabs]: return the maximum absolute value. - [`maxabsn( [x[, y[, ...args]]] )`][@stdlib/math/base/special/maxabsn]: return the maximum absolute value.