You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit removes the `dnanmeanors` symbol from the `@stdlib/stats/base`
namespace due to a package migration.
BREAKING CHANGE: remove `dnanmeanors`
To migrate, users should access the same symbol via the
`@stdlib/stats/strided` namespace.
---
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: passed
- task: lint_javascript_cli
status: na
- task: lint_javascript_examples
status: na
- task: lint_javascript_tests
status: na
- task: lint_javascript_benchmarks
status: na
- 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: passed
- task: lint_typescript_tests
status: na
- task: lint_license_headers
status: passed
---
* Computes the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.
650
-
*
651
-
* @param N - number of indexed elements
652
-
* @param x - input array
653
-
* @param strideX - stride length
654
-
* @returns arithmetic mean
655
-
*
656
-
* @example
657
-
* var Float64Array = require( '@stdlib/array/float64' );
658
-
*
659
-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
660
-
*
661
-
* var v = ns.dnanmeanors( x.length, x, 1 );
662
-
* // returns ~0.3333
663
-
*
664
-
* @example
665
-
* var Float64Array = require( '@stdlib/array/float64' );
666
-
*
667
-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
668
-
*
669
-
* var v = ns.dnanmeanors.ndarray( x.length, x, 1, 0 );
670
-
* // returns ~0.3333
671
-
*/
672
-
dnanmeanors: typeofdnanmeanors;
673
-
674
647
/**
675
648
* Computes the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.
0 commit comments