Skip to content

Commit ed60ecc

Browse files
feat: add stats/incr/nanmmeanstdev
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e9d79c9 commit ed60ecc

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/incr/nanmmeanstdev/benchmark

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/incr/nanmmeanstdev/benchmark/benchmark.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench' );
2424
var randu = require( '@stdlib/random/base/randu' );
2525
var pkg = require( '@stdlib/stats/incr/nanmmeanstdev/package.json' ).name;
26-
var incrmmeanstdev = require( '@stdlib/stats/incr/nanmmeanstdev/lib' );
26+
var incrnanmmeanstdev = require( '@stdlib/stats/incr/nanmmeanstdev/lib' );
2727

2828

2929
// MAIN //
@@ -33,7 +33,7 @@ bench( pkg, function benchmark( b ) {
3333
var i;
3434
b.tic();
3535
for ( i = 0; i < b.iterations; i++ ) {
36-
f = incrmmeanstdev( (i%5)+1 );
36+
f = incrnanmmeanstdev( (i%5)+1 );
3737
if ( typeof f !== 'function' ) {
3838
b.fail( 'should return a function' );
3939
}
@@ -51,7 +51,7 @@ bench( pkg+'::accumulator', function benchmark( b ) {
5151
var v;
5252
var i;
5353

54-
acc = incrmmeanstdev( 5 );
54+
acc = incrnanmmeanstdev( 5 );
5555

5656
b.tic();
5757
for ( i = 0; i < b.iterations; i++ ) {

0 commit comments

Comments
 (0)