Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/strided/base/cmap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<section class="intro">

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/strided/base/cmap/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/strided/base/dmskmap2/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/strided/base/map-by2/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/strided/base/smskmap2/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
// 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
Expand All @@ -51,7 +51,7 @@
* var m = new Uint8Array( [ 0, 0, 1, 0, 0 ] );
* var z = new Float32Array( x.length );
*
* smskmap2( x.length, x, 1, y, 1, m, 1, z, 1, addf );

Check warning on line 54 in lib/node_modules/@stdlib/strided/base/smskmap2/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "addf"
*
* console.log( z );
* // => <Float32Array>[ 2.0, 4.0, 0.0, 8.0, 10.0 ]
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/strided/base/zmap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<section class="intro">

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/strided/base/zmap/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down