Skip to content

Commit bfdc57c

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

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
@@ -25,7 +25,6 @@ import cumaxabs = require( '@stdlib/stats/base/cumaxabs' );
2525
import cumin = require( '@stdlib/stats/base/cumin' );
2626
import cuminabs = require( '@stdlib/stats/base/cuminabs' );
2727
import dists = require( '@stdlib/stats/base/dists' );
28-
import dmeanpn = require( '@stdlib/stats/base/dmeanpn' );
2928
import dmeanstdev = require( '@stdlib/stats/base/dmeanstdev' );
3029
import dmeanstdevpn = require( '@stdlib/stats/base/dmeanstdevpn' );
3130
import dmeanvar = require( '@stdlib/stats/base/dmeanvar' );
@@ -254,32 +253,6 @@ interface Namespace {
254253
*/
255254
dists: typeof dists;
256255

257-
/**
258-
* Computes the arithmetic mean of a double-precision floating-point strided array using a two-pass error correction algorithm.
259-
*
260-
* @param N - number of indexed elements
261-
* @param x - input array
262-
* @param stride - stride length
263-
* @returns arithmetic mean
264-
*
265-
* @example
266-
* var Float64Array = require( '@stdlib/array/float64' );
267-
*
268-
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
269-
*
270-
* var v = ns.dmeanpn( x.length, x, 1 );
271-
* // returns ~0.3333
272-
*
273-
* @example
274-
* var Float64Array = require( '@stdlib/array/float64' );
275-
*
276-
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
277-
*
278-
* var v = ns.dmeanpn.ndarray( x.length, x, 1, 0 );
279-
* // returns ~0.3333
280-
*/
281-
dmeanpn: typeof dmeanpn;
282-
283256
/**
284257
* Computes the mean and standard deviation of a double-precision floating-point strided array.
285258
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,6 @@ setReadOnly( ns, 'cuminabs', require( '@stdlib/stats/base/cuminabs' ) );
8181
*/
8282
setReadOnly( ns, 'dists', require( '@stdlib/stats/base/dists' ) );
8383

84-
/**
85-
* @name dmeanpn
86-
* @memberof ns
87-
* @readonly
88-
* @type {Function}
89-
* @see {@link module:@stdlib/stats/base/dmeanpn}
90-
*/
91-
setReadOnly( ns, 'dmeanpn', require( '@stdlib/stats/base/dmeanpn' ) );
92-
9384
/**
9485
* @name dmeanstdev
9586
* @memberof ns

0 commit comments

Comments
 (0)