You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/nanminabs/README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,8 @@ var nanminabs = require( '@stdlib/stats/base/nanminabs' );
37
37
```
38
38
39
39
#### 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.
41
42
42
43
```javascript
43
44
var x = [ 1.0, -2.0, NaN, 2.0 ];
@@ -51,9 +52,9 @@ The function has the following parameters:
51
52
52
53
-**N**: number of indexed elements.
53
54
-**x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
54
-
-**strideX**: strided length for `x`.
55
+
-**strideX**: stride length for `x`.
55
56
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`,
57
58
58
59
```javascript
59
60
var floor =require( '@stdlib/math/base/special/floor' );
0 commit comments