We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe7f9a8 commit 48995d6Copy full SHA for 48995d6
lib/node_modules/@stdlib/stats/incr/mmax/examples/index.js
@@ -22,7 +22,7 @@ var randu = require( '@stdlib/random/base/randu' );
22
var incrmmax = require( './../lib' );
23
24
var accumulator;
25
-var mu;
+var m;
26
var v;
27
var i;
28
@@ -33,6 +33,6 @@ accumulator = incrmmax( 5 );
33
console.log( '\nValue\tMax\n' );
34
for ( i = 0; i < 100; i++ ) {
35
v = randu() * 100.0;
36
- mu = accumulator( v );
37
- console.log( '%d\t%d', v.toFixed( 4 ), mu.toFixed( 4 ) );
+ m = accumulator( v );
+ console.log( '%d\t%d', v.toFixed( 4 ), m.toFixed( 4 ) );
38
}
0 commit comments