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
remove: remove stats/base/dsmeanors from namespace
This commit removes the `dsmeanors` symbol from the `@stdlib/stats/base` namespace due to a package migration.
BREAKING CHANGE: remove `stats/base/dsmeanors`
To migrate, users should access the same symbol via the `@stdlib/stats/strided/dsmeanors` namespace.
Ref: #4797
---
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 single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.
615
-
*
616
-
* @param N - number of indexed elements
617
-
* @param x - input array
618
-
* @param strideX - stride length
619
-
* @returns arithmetic mean
620
-
*
621
-
* @example
622
-
* var Float32Array = require( '@stdlib/array/float32' );
623
-
*
624
-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
625
-
*
626
-
* var v = ns.dsmeanors( x.length, x, 1 );
627
-
* // returns ~0.3333
628
-
*
629
-
* @example
630
-
* var Float32Array = require( '@stdlib/array/float32' );
631
-
*
632
-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
633
-
*
634
-
* var v = ns.dsmeanors.ndarray( x.length, x, 1, 0 );
635
-
* // returns ~0.3333
636
-
*/
637
-
dsmeanors: typeofdsmeanors;
638
-
639
612
/**
640
613
* Computes the standard deviation of a double-precision floating-point strided array.
0 commit comments