Skip to content

Commit 79f058b

Browse files
committed
Fix missing parameter
1 parent 9e83b40 commit 79f058b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/strided/base/dmap/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ dmap( N, x1, -2, y1, 1, abs );
9797
// y0 => <Float64Array>[ 0.0, 0.0, 0.0, 6.0, 4.0, 2.0 ]
9898
```
9999

100-
#### dmap.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
100+
#### dmap.ndarray( N, x, strideX, offsetX, y, strideY, offsetY, fcn )
101101

102102
Applies a unary function accepting and returning double-precision floating-point numbers to each element in a double-precision floating-point strided input array and assigns each result to an element in a double-precision floating-point strided output array using alternative indexing semantics.
103103

lib/node_modules/@stdlib/strided/base/dmskmap/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ dmskmap( N, x1, -2, m1, 1, y1, 1, abs );
108108
// y0 => <Float64Array>[ 0.0, 0.0, 0.0, 6.0, 4.0, 0.0 ]
109109
```
110110

111-
#### dmskmap.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask, y, strideY, offsetY )
111+
#### dmskmap.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask, y, strideY, offsetY, fcn )
112112

113113
Applies a unary function accepting and returning double-precision floating-point numbers to each element in a double-precision floating-point strided input array according to a corresponding element in a strided mask array and assigns each result to an element in a double-precision floating-point strided output array using alternative indexing semantics.
114114

lib/node_modules/@stdlib/strided/base/smap/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ smap( N, x1, -2, y1, 1, absf );
9797
// y0 => <Float32Array>[ 0.0, 0.0, 0.0, 6.0, 4.0, 2.0 ]
9898
```
9999

100-
#### smap.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
100+
#### smap.ndarray( N, x, strideX, offsetX, y, strideY, offsetY, fcn )
101101

102102
Applies a unary function accepting and returning single-precision floating-point numbers to each element in a single-precision floating-point strided input array and assigns each result to an element in a single-precision floating-point strided output array using alternative indexing semantics.
103103

lib/node_modules/@stdlib/strided/base/smskmap/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ smskmap( N, x1, -2, m1, 1, y1, 1, absf );
108108
// y0 => <Float32Array>[ 0.0, 0.0, 0.0, 6.0, 4.0, 0.0 ]
109109
```
110110

111-
#### smskmap.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask, y, strideY, offsetY )
111+
#### smskmap.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask, y, strideY, offsetY, fcn )
112112

113113
Applies a unary function accepting and returning single-precision floating-point numbers to each element in a single-precision floating-point strided input array according to a corresponding element in a strided mask array and assigns each result to an element in a single-precision floating-point strided output array using alternative indexing semantics.
114114

0 commit comments

Comments
 (0)