Skip to content

Commit c84cbb3

Browse files
fix: lint error
1 parent 3f65db8 commit c84cbb3

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

lib/node_modules/@stdlib/stats/base/dsmeanpn/benchmark/benchmark.ndarray.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ var options = {
3636
'dtype': 'float32'
3737
};
3838

39-
4039
/**
4140
* Creates a benchmark function.
4241
*

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@
3333
// Standard Usage:
3434
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 2.0 ] );
3535
> {{alias}}( x.length, x, 2 )
36-
~0.3333
36+
~1.25
3737

3838
// Using `N` and stride parameters:
3939
> x = new {{alias:@stdlib/array/float32}}( [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ] );
4040
> {{alias}}( 4, x, 2 )
41-
~0.3333
41+
~1.25
4242

4343
// Using view offsets:
4444
> var x0 = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );
4545
> var x1 = new {{alias:@stdlib/array/float32}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
4646
> {{alias}}( 4, x1, 2 )
47-
~-0.3333
47+
~-1.25
4848

4949

5050
{{alias}}.ndarray( N, x, strideX, offsetX )
@@ -81,12 +81,12 @@
8181
// Standard Usage:
8282
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 2.0 ] );
8383
> {{alias}}.ndarray( x.length, x, 1, 0 )
84-
~0.3333
84+
~1.25
8585

8686
// Using offset parameter:
8787
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );
8888
> {{alias}}.ndarray( 4, x, 2, 1 )
89-
~-0.3333
89+
~-1.25
9090

9191
See Also
9292
--------

0 commit comments

Comments
 (0)