diff --git a/lib/node_modules/@stdlib/math/README.md b/lib/node_modules/@stdlib/math/README.md index 6049bb70e753..73bef36296d9 100644 --- a/lib/node_modules/@stdlib/math/README.md +++ b/lib/node_modules/@stdlib/math/README.md @@ -45,6 +45,7 @@ The namespace consists of the following sub-namespaces:
+- [`array`][@stdlib/math/array]: math functions applied to arrays. - [`base`][@stdlib/math/base]: base (i.e., lower-level) math functions. - [`iter`][@stdlib/math/iter]: math iterators. - [`special`][@stdlib/math/special]: special math functions. @@ -92,6 +93,8 @@ console.log( objectKeys( math ) ); +[@stdlib/math/array]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/array + [@stdlib/math/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base [@stdlib/math/iter]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/iter diff --git a/lib/node_modules/@stdlib/math/array/README.md b/lib/node_modules/@stdlib/math/array/README.md index f3d3b43a87b6..d04b2a3823df 100644 --- a/lib/node_modules/@stdlib/math/array/README.md +++ b/lib/node_modules/@stdlib/math/array/README.md @@ -45,6 +45,9 @@ The namespace consists of the following sub-namespaces:
+- [`special`][@stdlib/math/array/special]: special math functions applied to arrays. +- [`tools`][@stdlib/math/array/tools]: math array function tools. +
@@ -86,6 +89,10 @@ console.log( objectKeys( ns ) ); +[@stdlib/math/array/special]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/array/special + +[@stdlib/math/array/tools]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/array/tools + diff --git a/lib/node_modules/@stdlib/math/array/special/README.md b/lib/node_modules/@stdlib/math/array/special/README.md index 6dc4b9322f26..0848b4f7da45 100644 --- a/lib/node_modules/@stdlib/math/array/special/README.md +++ b/lib/node_modules/@stdlib/math/array/special/README.md @@ -45,6 +45,8 @@ The namespace contains the following:
+- [`abs( x[, options] )`][@stdlib/math/array/special/abs]: compute the absolute value for each element in an input array. +
@@ -88,6 +90,8 @@ var out = ns.abs( x ); +[@stdlib/math/array/special/abs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/array/special/abs + diff --git a/lib/node_modules/@stdlib/math/array/tools/README.md b/lib/node_modules/@stdlib/math/array/tools/README.md index aef6b0624d6a..58af8ad7b019 100644 --- a/lib/node_modules/@stdlib/math/array/tools/README.md +++ b/lib/node_modules/@stdlib/math/array/tools/README.md @@ -45,6 +45,9 @@ The namespace contains the following:
+- [`unaryFactory( fcn, idtypes, odtypes, policy )`][@stdlib/math/array/tools/unary-factory]: create a function for applying a unary function to each element in an input array. +- [`unary( fcn, idtypes, odtypes, policy )`][@stdlib/math/array/tools/unary]: constructor for applying a unary function to each element in an input array. +
@@ -106,6 +109,10 @@ var out = f.apply( x ); +[@stdlib/math/array/tools/unary-factory]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/array/tools/unary-factory + +[@stdlib/math/array/tools/unary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/array/tools/unary + diff --git a/lib/node_modules/@stdlib/math/base/ops/README.md b/lib/node_modules/@stdlib/math/base/ops/README.md index 0b500d7354f7..0abaf15d372b 100644 --- a/lib/node_modules/@stdlib/math/base/ops/README.md +++ b/lib/node_modules/@stdlib/math/base/ops/README.md @@ -52,7 +52,6 @@ The namespace contains the following functions: - [`csubf( z1, z2 )`][@stdlib/math/base/ops/csubf]: subtract two single-precision complex 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. -- [`mulf( x, y )`][@stdlib/number/float32/base/mul]: multiply two single-precision floating-point numbers. - [`subf( x, y )`][@stdlib/math/base/ops/subf]: subtract two single-precision floating-point numbers. - [`umul( a, b )`][@stdlib/math/base/ops/umul]: perform C-like multiplication of two unsigned 32-bit integers. - [`umuldw( a, b )`][@stdlib/math/base/ops/umuldw]: compute the double word product of two unsigned 32-bit integers. @@ -137,8 +136,6 @@ console.log( ns.imuldw( 0x80000000|0, 0x40000000|0 ) ); [@stdlib/math/base/ops/imuldw]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/imuldw -[@stdlib/number/float32/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float32/base/mul - [@stdlib/math/base/ops/subf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/subf [@stdlib/math/base/ops/umul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/umul diff --git a/lib/node_modules/@stdlib/ndarray/base/assert/README.md b/lib/node_modules/@stdlib/ndarray/base/assert/README.md index 01c15fcee8fe..0a333bd19727 100644 --- a/lib/node_modules/@stdlib/ndarray/base/assert/README.md +++ b/lib/node_modules/@stdlib/ndarray/base/assert/README.md @@ -61,6 +61,7 @@ var o = ns; - [`isMostlySafeDataTypeCast( from, to )`][@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast]: determine whether an ndarray data type can be safely cast or, for floating-point data types, downcast to another ndarray data type. - [`isNumericDataType( value )`][@stdlib/ndarray/base/assert/is-numeric-data-type]: test if an input value is a supported ndarray numeric data type. - [`isOrder( value )`][@stdlib/ndarray/base/assert/is-order]: test if an input value is an ndarray order. +- [`isOutputDataTypePolicy( value )`][@stdlib/ndarray/base/assert/is-output-data-type-policy]: test if an input value is a supported ndarray output data type policy. - [`isReadOnly( arr )`][@stdlib/ndarray/base/assert/is-read-only]: test if an ndarray is **read-only**. - [`isRealDataType( value )`][@stdlib/ndarray/base/assert/is-real-data-type]: test if an input value is a supported ndarray real-valued data type. - [`isRealFloatingPointDataType( value )`][@stdlib/ndarray/base/assert/is-real-floating-point-data-type]: test if an input value is a supported ndarray real-valued floating-point data type. @@ -150,6 +151,8 @@ console.log( objectKeys( ns ) ); [@stdlib/ndarray/base/assert/is-order]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assert/is-order +[@stdlib/ndarray/base/assert/is-output-data-type-policy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assert/is-output-data-type-policy + [@stdlib/ndarray/base/assert/is-read-only]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assert/is-read-only [@stdlib/ndarray/base/assert/is-real-data-type]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assert/is-real-data-type