Skip to content

Commit 523f735

Browse files
committed
remove: remove stats/base/dsmeanpn from namespace
This commit removes the `dsmeanpn` symbol from the `@stdlib/stats/base` namespace due to a package migration. BREAKING CHANGE: remove `stats/base/dsmeanpn` To migrate, users should access the same symbol via the `@stdlib/stats/strided/dsmeanpn` 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 ---
1 parent 752092a commit 523f735

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

lib/node_modules/@stdlib/stats/base/docs/types/index.d.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ import dnanstdev = require( '@stdlib/stats/base/dnanstdev' );
4242
import dsem = require( '@stdlib/stats/base/dsem' );
4343
import dsempn = require( '@stdlib/stats/base/dsempn' );
4444
import dsmeanors = require( '@stdlib/stats/base/dsmeanors' );
45-
import dsmeanpn = require( '@stdlib/stats/base/dsmeanpn' );
4645
import dsmeanpw = require( '@stdlib/stats/base/dsmeanpw' );
4746
import dsmeanwd = require( '@stdlib/stats/base/dsmeanwd' );
4847
import dsnanmean = require( '@stdlib/stats/base/dsnanmean' );
@@ -824,32 +823,6 @@ interface Namespace {
824823
*/
825824
dsmeanors: typeof dsmeanors;
826825

827-
/**
828-
* Computes the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm with extended accumulation and returning an extended precision result.
829-
*
830-
* @param N - number of indexed elements
831-
* @param x - input array
832-
* @param strideX - stride length
833-
* @returns arithmetic mean
834-
*
835-
* @example
836-
* var Float32Array = require( '@stdlib/array/float32' );
837-
*
838-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
839-
*
840-
* var v = ns.dsmeanpn( x.length, x, 1 );
841-
* // returns ~0.3333
842-
*
843-
* @example
844-
* var Float32Array = require( '@stdlib/array/float32' );
845-
*
846-
* var x = new Float32Array( [ 1.0, -2.0, 2.0 ] );
847-
*
848-
* var v = ns.dsmeanpn.ndarray( x.length, x, 1, 0 );
849-
* // returns ~0.3333
850-
*/
851-
dsmeanpn: typeof dsmeanpn;
852-
853826
/**
854827
* Computes the arithmetic mean of a single-precision floating-point strided array using pairwise summation with extended accumulation and returning an extended precision result.
855828
*

lib/node_modules/@stdlib/stats/base/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,6 @@ setReadOnly( ns, 'dsempn', require( '@stdlib/stats/base/dsempn' ) );
234234
*/
235235
setReadOnly( ns, 'dsmeanors', require( '@stdlib/stats/base/dsmeanors' ) );
236236

237-
/**
238-
* @name dsmeanpn
239-
* @memberof ns
240-
* @readonly
241-
* @type {Function}
242-
* @see {@link module:@stdlib/stats/base/dsmeanpn}
243-
*/
244-
setReadOnly( ns, 'dsmeanpn', require( '@stdlib/stats/base/dsmeanpn' ) );
245-
246237
/**
247238
* @name dsmeanpw
248239
* @memberof ns

0 commit comments

Comments
 (0)