Skip to content

Commit 1a99c85

Browse files
authored
Update repl.txt
Signed-off-by: Kaushikgtm <[email protected]>
1 parent fef60be commit 1a99c85

File tree

1 file changed

+7
-7
lines changed
  • lib/node_modules/@stdlib/stats/base/nanminabs/docs

1 file changed

+7
-7
lines changed

lib/node_modules/@stdlib/stats/base/nanminabs/docs/repl.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11

22
{{alias}}( N, x, strideX )
3-
Computes the minimum absolute value of a strided array, ignoring `NaN` values.
3+
Computes the minimum absolute value of a strided array, ignoring
4+
`NaN` values.
45

5-
The `N` and stride parameters determine which elements in the strided array
6-
are accessed at runtime.
6+
The `N` and stride parameters determine which elements in the
7+
stridedarray are accessed at runtime.
78

8-
Indexing is relative to the first index. To introduce an offset, use a typed
9-
array view.
9+
Indexing is relative to the first index. To introduce an offset,
10+
use a typed array view.
1011

1112
If `N <= 0`, the function returns `NaN`.
1213

@@ -39,8 +40,7 @@
3940
1.0
4041

4142
// Using view offsets:
42-
> var x0 = new {{alias:@stdlib/array/float64}}( [
43-
1.0, -2.0, 3.0, 2.0, 5.0, -1.0, NaN, NaN ] );
43+
> var x0 = new {{alias:@stdlib/array/float64}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0, NaN, NaN ] );
4444
> var x1 = new {{alias:@stdlib/array/float64}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
4545
> {{alias}}( 4, x1, 2 )
4646
1.0

0 commit comments

Comments
 (0)