diff --git a/base/ops/README.md b/base/ops/README.md index a74e31dc5..2dc4dd6ad 100644 --- a/base/ops/README.md +++ b/base/ops/README.md @@ -46,6 +46,7 @@ The namespace contains the following functions:
- [`add( x, y )`][@stdlib/math/base/ops/add]: compute the sum of two double-precision floating-point numbers. +- [`add3( x, y, z )`][@stdlib/math/base/ops/add3]: compute the sum of three 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/math/base/ops/cadd]: add two double-precision complex floating-point numbers. - [`caddf( z1, z2 )`][@stdlib/math/base/ops/caddf]: add two single-precision complex floating-point numbers. @@ -53,8 +54,11 @@ The namespace contains the following functions: - [`cmul( z1, z2 )`][@stdlib/math/base/ops/cmul]: multiply two double-precision complex floating-point numbers. - [`cmulf( z1, z2 )`][@stdlib/math/base/ops/cmulf]: 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. - [`csubf( z1, z2 )`][@stdlib/math/base/ops/csubf]: subtract two single-precision complex floating-point numbers. +- [`div( x, y )`][@stdlib/math/base/ops/div]: divide two double-precision floating-point numbers. +- [`divf( x, y )`][@stdlib/math/base/ops/divf]: divide two single-precision floating-point numbers. - [`imul( a, b )`][@stdlib/math/base/ops/imul]: perform C-like multiplication of two signed 32-bit integers. - [`imuldw( a, b )`][@stdlib/math/base/ops/imuldw]: compute the double word product of two signed 32-bit integers. - [`mul( x, y )`][@stdlib/math/base/ops/mul]: multiply two double-precision floating-point numbers. @@ -107,6 +111,8 @@ console.log( objectKeys( ns ) ); [@stdlib/math/base/ops/add]: https://github.com/stdlib-js/math/tree/main/base/ops/add +[@stdlib/math/base/ops/add3]: https://github.com/stdlib-js/math/tree/main/base/ops/add3 + [@stdlib/math/base/ops/addf]: https://github.com/stdlib-js/math/tree/main/base/ops/addf [@stdlib/math/base/ops/cadd]: https://github.com/stdlib-js/math/tree/main/base/ops/cadd @@ -121,10 +127,16 @@ console.log( objectKeys( ns ) ); [@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 + [@stdlib/math/base/ops/csub]: https://github.com/stdlib-js/math/tree/main/base/ops/csub [@stdlib/math/base/ops/csubf]: https://github.com/stdlib-js/math/tree/main/base/ops/csubf +[@stdlib/math/base/ops/div]: https://github.com/stdlib-js/math/tree/main/base/ops/div + +[@stdlib/math/base/ops/divf]: https://github.com/stdlib-js/math/tree/main/base/ops/divf + [@stdlib/math/base/ops/imul]: https://github.com/stdlib-js/math/tree/main/base/ops/imul [@stdlib/math/base/ops/imuldw]: https://github.com/stdlib-js/math/tree/main/base/ops/imuldw diff --git a/base/special/README.md b/base/special/README.md index 3f9a401e2..9ade88c5a 100644 --- a/base/special/README.md +++ b/base/special/README.md @@ -248,6 +248,7 @@ var fcns = special; - [`erfcx( x )`][@stdlib/math/base/special/erfcx]: scaled complementary error function. - [`erfinv( x )`][@stdlib/math/base/special/erfinv]: inverse error function. - [`factorial( x )`][@stdlib/math/base/special/factorial]: factorial function. +- [`factorial2( n )`][@stdlib/math/base/special/factorial2]: double factorial function. - [`factorialln( x )`][@stdlib/math/base/special/factorialln]: natural logarithm of the factorial function. - [`fallingFactorial( x, n )`][@stdlib/math/base/special/falling-factorial]: compute the falling factorial. - [`fibonacciIndex( F )`][@stdlib/math/base/special/fibonacci-index]: compute the Fibonacci number index. @@ -487,6 +488,8 @@ console.log( objectKeys( special ) ); [@stdlib/math/base/special/factorial]: https://github.com/stdlib-js/math/tree/main/base/special/factorial +[@stdlib/math/base/special/factorial2]: https://github.com/stdlib-js/math/tree/main/base/special/factorial2 + [@stdlib/math/base/special/factorialln]: https://github.com/stdlib-js/math/tree/main/base/special/factorialln [@stdlib/math/base/special/falling-factorial]: https://github.com/stdlib-js/math/tree/main/base/special/falling-factorial