diff --git a/lib/node_modules/@stdlib/strided/base/cmap/README.md b/lib/node_modules/@stdlib/strided/base/cmap/README.md index a707afe6d36a..20df204e2d0e 100644 --- a/lib/node_modules/@stdlib/strided/base/cmap/README.md +++ b/lib/node_modules/@stdlib/strided/base/cmap/README.md @@ -20,7 +20,7 @@ limitations under the License. # cmap -> Apply a unary function to a single-precision floating-point strided input array and assign results to a single-precision floating-point strided output array. +> Apply a unary function to a single-precision complex floating-point strided input array and assign results to a single-precision complex floating-point strided output array.
diff --git a/lib/node_modules/@stdlib/strided/base/cmap/lib/index.js b/lib/node_modules/@stdlib/strided/base/cmap/lib/index.js index d92a780b9429..9a904b0dee85 100644 --- a/lib/node_modules/@stdlib/strided/base/cmap/lib/index.js +++ b/lib/node_modules/@stdlib/strided/base/cmap/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Apply a unary function to a single-precision floating-point strided input array and assign results to a single-precision floating-point strided output array. +* Apply a unary function to a single-precision complex floating-point strided input array and assign results to a single-precision complex floating-point strided output array. * * @module @stdlib/strided/base/cmap * diff --git a/lib/node_modules/@stdlib/strided/base/dmskmap2/lib/main.js b/lib/node_modules/@stdlib/strided/base/dmskmap2/lib/main.js index a8a7acc0b618..3d8ec086ce19 100644 --- a/lib/node_modules/@stdlib/strided/base/dmskmap2/lib/main.js +++ b/lib/node_modules/@stdlib/strided/base/dmskmap2/lib/main.js @@ -27,7 +27,7 @@ var ndarray = require( './ndarray.js' ); // MAIN // /** -* Applies a binary function to double-precision floating-point strided input arrays and assigns results to a double-precision floating-point strided output array. +* Applies a binary function to double-precision floating-point strided input arrays according to a strided mask array and assigns results to a double-precision floating-point strided output array. * * @param {NonNegativeInteger} N - number of indexed elements * @param {Float64Array} x - input array diff --git a/lib/node_modules/@stdlib/strided/base/map-by2/lib/main.js b/lib/node_modules/@stdlib/strided/base/map-by2/lib/main.js index 5b9f30eb1dbb..fbaa127ce79e 100644 --- a/lib/node_modules/@stdlib/strided/base/map-by2/lib/main.js +++ b/lib/node_modules/@stdlib/strided/base/map-by2/lib/main.js @@ -33,7 +33,7 @@ var accessors = require( './accessors.js' ); // MAIN // /** -* Applies a binary function to each element retrieved from a strided input array according to a callback function and assigns results to a strided output array. +* Applies a binary function to each pair of elements retrieved from strided input arrays according to a callback function and assigns results to a strided output array. * * @private * @param {NonNegativeInteger} N - number of indexed elements diff --git a/lib/node_modules/@stdlib/strided/base/map-by2/lib/ndarray.js b/lib/node_modules/@stdlib/strided/base/map-by2/lib/ndarray.js index 6b35e1bed3c5..b90bc0814513 100644 --- a/lib/node_modules/@stdlib/strided/base/map-by2/lib/ndarray.js +++ b/lib/node_modules/@stdlib/strided/base/map-by2/lib/ndarray.js @@ -33,7 +33,7 @@ var accessors = require( './accessors.ndarray.js' ); // MAIN // /** -* Applies a binary function to each element retrieved from a strided input array according to a callback function and assigns results to a strided output array. +* Applies a binary function to each pair of elements retrieved from strided input arrays according to a callback function and assigns results to a strided output array. * * @private * @param {NonNegativeInteger} N - number of indexed elements diff --git a/lib/node_modules/@stdlib/strided/base/read-dataview/lib/main.js b/lib/node_modules/@stdlib/strided/base/read-dataview/lib/main.js index 630cce351ec8..f059eebb5f31 100644 --- a/lib/node_modules/@stdlib/strided/base/read-dataview/lib/main.js +++ b/lib/node_modules/@stdlib/strided/base/read-dataview/lib/main.js @@ -30,9 +30,9 @@ var ndarray = require( './ndarray.js' ); * Copies elements from an input strided DataView to elements in an output strided array. * * @param {NonNegativeInteger} N - number of indexed elements -* @param {DataView} view - output DataView +* @param {DataView} view - input DataView * @param {integer} strideView - `view` stride length (in bytes) -* @param {Collection} out - input array +* @param {Collection} out - output array * @param {integer} strideOut - `out` stride length * @param {boolean} littleEndian - boolean indicating whether the data is stored in little-endian format * @returns {Collection} output array diff --git a/lib/node_modules/@stdlib/strided/base/smskmap2/lib/main.js b/lib/node_modules/@stdlib/strided/base/smskmap2/lib/main.js index 6b8a2c56e6d3..10d36c7c8739 100644 --- a/lib/node_modules/@stdlib/strided/base/smskmap2/lib/main.js +++ b/lib/node_modules/@stdlib/strided/base/smskmap2/lib/main.js @@ -27,7 +27,7 @@ var ndarray = require( './ndarray.js' ); // MAIN // /** -* Applies a binary function to single-precision floating-point strided input arrays and assigns results to a single-precision floating-point strided output array. +* Applies a binary function to single-precision floating-point strided input arrays according to a strided mask array and assigns results to a single-precision floating-point strided output array. * * @param {NonNegativeInteger} N - number of indexed elements * @param {Float32Array} x - input array diff --git a/lib/node_modules/@stdlib/strided/base/zmap/README.md b/lib/node_modules/@stdlib/strided/base/zmap/README.md index 31f2db4d0547..a7bcd470e3c7 100644 --- a/lib/node_modules/@stdlib/strided/base/zmap/README.md +++ b/lib/node_modules/@stdlib/strided/base/zmap/README.md @@ -20,7 +20,7 @@ limitations under the License. # zmap -> Apply a unary function to a double-precision floating-point strided input array and assign results to a double-precision floating-point strided output array. +> Apply a unary function to a double-precision complex floating-point strided input array and assign results to a double-precision complex floating-point strided output array.
diff --git a/lib/node_modules/@stdlib/strided/base/zmap/lib/index.js b/lib/node_modules/@stdlib/strided/base/zmap/lib/index.js index bbd2f120ad89..c96d5d07274f 100644 --- a/lib/node_modules/@stdlib/strided/base/zmap/lib/index.js +++ b/lib/node_modules/@stdlib/strided/base/zmap/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Apply a unary function to a double-precision floating-point strided input array and assign results to a double-precision floating-point strided output array. +* Apply a unary function to a double-precision complex floating-point strided input array and assign results to a double-precision complex floating-point strided output array. * * @module @stdlib/strided/base/zmap *