Skip to content

Commit 6247e5e

Browse files
committed
Add link to base package
1 parent 63010c0 commit 6247e5e

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/math/strided/ops/add-by

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/strided/ops/add-by/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
# addBy
2424

25-
> Element-wise addition of two strided arrays via a callback function.
25+
> Element-wise [addition][@stdlib/math/base/ops/add] of two strided arrays via a callback function.
2626
2727
<section class="intro">
2828

@@ -40,7 +40,7 @@ var addBy = require( '@stdlib/math/strided/ops/add-by' );
4040

4141
#### addBy( N, x, strideX, y, strideY, z, strideZ, clbk\[, thisArg] )
4242

43-
Performs element-wise addition of two strided arrays via a callback function and assigns each result to an element in an output strided array.
43+
Performs element-wise [addition][@stdlib/math/base/ops/add] of two strided arrays via a callback function and assigns each result to an element in an output strided array.
4444

4545
```javascript
4646
function accessor( values ) {
@@ -137,7 +137,7 @@ addBy( 3, x1, -2, y1, 1, z1, 1, accessor );
137137

138138
#### addBy.ndarray( N, x, strideX, offsetX, y, strideY, offsetY, z, strideZ, offsetZ, clbk\[, thisArg] )
139139

140-
Performs element-wise addition of two strided arrays via a callback function and assigns each result to an element in an output strided array using alternative indexing semantics.
140+
Performs element-wise [addition][@stdlib/math/base/ops/add] of two strided arrays via a callback function and assigns each result to an element in an output strided array using alternative indexing semantics.
141141

142142
```javascript
143143
function accessor( values ) {
@@ -152,7 +152,7 @@ addBy.ndarray( x.length, x, 1, 0, y, 1, 0, z, 1, 0, accessor );
152152
// z => [ 12.0, 14.0, 16.0, 18.0, 20.0 ]
153153
```
154154

155-
The function accepts the following additional arguments:
155+
The function accepts the following [addition][@stdlib/math/base/ops/add]al arguments:
156156

157157
- **offsetX**: starting index for `x`.
158158
- **offsetY**: starting index for `y`.

0 commit comments

Comments
 (0)