Skip to content

Commit 9f451f5

Browse files
fix: Ci error
1 parent 02f3600 commit 9f451f5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939

4040
// Using `N` and `stride` parameters:
4141
> x = new {{alias:@stdlib/array/float32}}( [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0, NaN ] );
42-
> {{alias}}( 6, x, stride )
42+
> {{alias}}( 6, x, 2 )
4343
NaN
4444

4545
// Using view offsets:
4646
> var x0 = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0, NaN ] );
4747
> var x1 = new {{alias:@stdlib/array/float32}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
48-
> {{alias}}( 6, x1, stride )
48+
> {{alias}}( 6, x1, 2 )
4949
NaN
5050

5151

lib/node_modules/@stdlib/stats/base/dsnanmeanors/lib/dsnanmeanors.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818

1919
'use strict';
2020

21+
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
22+
var ndarray = require( './ndarray.js' );
23+
24+
2125
// MAIN //
2226

2327
/**

0 commit comments

Comments
 (0)