Skip to content

Commit 7fbca71

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

File tree

1 file changed

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

1 file changed

+6
-4
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,17 @@
3939
1.0
4040

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

4749

4850
{{alias}}.ndarray( N, x, strideX, offsetX )
49-
Computes the minimum absolute value of a strided array, ignoring `NaN` values and using
50-
alternative indexing semantics.
51+
Computes the minimum absolute value of a strided array, ignoring `NaN`
52+
values and using alternative indexing semantics.
5153

5254
While typed array views mandate a view offset based on the underlying
5355
buffer, the `offset` parameter supports indexing semantics based on a

0 commit comments

Comments
 (0)