We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddbb8be commit 9d30c2fCopy full SHA for 9d30c2f
lib/node_modules/@stdlib/stats/incr/nanmmaxabs/README.md
@@ -104,7 +104,7 @@ var accumulator = incrnanmmaxabs( 5 );
104
// For each simulated datum, update the moving maximum absolute value...
105
var i;
106
for ( i = 0; i < 100; i++ ) {
107
- accumulator( ( bernoulli( 0.8 ) < 1 ) ? NaN : uniform( -100.0, 100.0 ) );
+ accumulator( ( bernoulli( 0.8 ) < 1 ) ? NaN : uniform( -100.0, 100.0 ) );
108
}
109
console.log( accumulator() );
110
```
0 commit comments