Skip to content

Commit 493c364

Browse files
committed
Update links
1 parent 1b2e375 commit 493c364

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/math/strided/special/abs2

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/strided/special/abs2/README.md

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

2121
# abs2
2222

23-
> Compute the squared [absolute value][absolute-value] for each element in a strided array.
23+
> Compute the squared [absolute value][@stdlib/math/base/special/abs] for each element in a strided array.
2424
2525
<section class="intro">
2626

@@ -38,7 +38,7 @@ var abs2 = require( '@stdlib/math/strided/special/abs2' );
3838

3939
#### abs2( N, dtypeX, x, strideX, dtypeY, y, strideY )
4040

41-
Computes the squared [absolute value][absolute-value] for each element in a strided array `x` and assigns the results to elements in a strided array `y`.
41+
Computes the squared [absolute value][@stdlib/math/base/special/abs] for each element in a strided array `x` and assigns the results to elements in a strided array `y`.
4242

4343
```javascript
4444
var Float64Array = require( '@stdlib/array/float64' );
@@ -91,7 +91,7 @@ abs2( 3, 'float64', x1, -2, 'float64', y1, 1 );
9191

9292
#### abs2.ndarray( N, dtypeX, x, strideX, offsetX, dtypeY, y, strideY, offsetY )
9393

94-
Computes the squared [absolute value][absolute-value] for each element in a strided array `x` and assigns the results to elements in a strided array `y` using alternative indexing semantics.
94+
Computes the squared [absolute value][@stdlib/math/base/special/abs] for each element in a strided array `x` and assigns the results to elements in a strided array `y` using alternative indexing semantics.
9595

9696
```javascript
9797
var Float64Array = require( '@stdlib/array/float64' );
@@ -179,7 +179,7 @@ for ( i = 0; i < dt.length; i++ ) {
179179

180180
<section class="links">
181181

182-
[absolute-value]: https://en.wikipedia.org/wiki/Absolute_value
182+
[@stdlib/math/base/special/abs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/abs
183183

184184
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
185185

0 commit comments

Comments
 (0)