Skip to content

Commit 612e0a8

Browse files
authored
Update README.md
Signed-off-by: Kaushikgtm <[email protected]>
1 parent e80b90e commit 612e0a8

File tree

1 file changed

+5
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/nanminabs

1 file changed

+5
-4
lines changed

lib/node_modules/@stdlib/stats/base/nanminabs/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ var nanminabs = require( '@stdlib/stats/base/nanminabs' );
3737
```
3838

3939
#### nanminabs( N, x, strideX )
40-
Computes the minimum absolute value of a strided array, ignoring `NaN` values.
40+
41+
Computes the minimum absolute value of a strided array `x`, ignoring `NaN` values.
4142

4243
```javascript
4344
var x = [ 1.0, -2.0, NaN, 2.0 ];
@@ -51,9 +52,9 @@ The function has the following parameters:
5152

5253
- **N**: number of indexed elements.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
54-
- **strideX**: strided length for `x`.
55+
- **strideX**: stride length for `x`.
5556

56-
The `N` and `stride` parameters determine which elements in the strided array are accessed at runtime. For example, to compute the minimum absolute value of every other element in `x`,
57+
The `N` and `stride` parameters determine which elements in `x` are accessed at runtime. For example, to compute the minimum absolute value of every other element in `x`,
5758

5859
```javascript
5960
var floor = require( '@stdlib/math/base/special/floor' );
@@ -179,8 +180,8 @@ console.log( v );
179180
<section class="links">
180181

181182
[mdn-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
182-
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
183183
[@stdlib/array/base/accessor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/accessor
184+
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
184185

185186
<!-- <related-links> -->
186187

0 commit comments

Comments
 (0)