Skip to content

Commit 69386b4

Browse files
committed
feat: add meankbn, meankbn2, meanors, meanpn, meanpw, and meanwd to 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3a533a6 commit 69386b4

File tree

1 file changed

+54
-0
lines changed
  • lib/node_modules/@stdlib/stats/array/lib

1 file changed

+54
-0
lines changed

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

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,60 @@ setReadOnly( ns, 'maxsorted', require( '@stdlib/stats/array/maxsorted' ) );
8181
*/
8282
setReadOnly( ns, 'mean', require( '@stdlib/stats/array/mean' ) );
8383

84+
/**
85+
* @name meankbn
86+
* @memberof ns
87+
* @readonly
88+
* @type {Function}
89+
* @see {@link module:@stdlib/stats/array/meankbn}
90+
*/
91+
setReadOnly( ns, 'meankbn', require( '@stdlib/stats/array/meankbn' ) );
92+
93+
/**
94+
* @name meankbn2
95+
* @memberof ns
96+
* @readonly
97+
* @type {Function}
98+
* @see {@link module:@stdlib/stats/array/meankbn2}
99+
*/
100+
setReadOnly( ns, 'meankbn2', require( '@stdlib/stats/array/meankbn2' ) );
101+
102+
/**
103+
* @name meanors
104+
* @memberof ns
105+
* @readonly
106+
* @type {Function}
107+
* @see {@link module:@stdlib/stats/array/meanors}
108+
*/
109+
setReadOnly( ns, 'meanors', require( '@stdlib/stats/array/meanors' ) );
110+
111+
/**
112+
* @name meanpn
113+
* @memberof ns
114+
* @readonly
115+
* @type {Function}
116+
* @see {@link module:@stdlib/stats/array/meanpn}
117+
*/
118+
setReadOnly( ns, 'meanpn', require( '@stdlib/stats/array/meanpn' ) );
119+
120+
/**
121+
* @name meanpw
122+
* @memberof ns
123+
* @readonly
124+
* @type {Function}
125+
* @see {@link module:@stdlib/stats/array/meanpw}
126+
*/
127+
setReadOnly( ns, 'meanpw', require( '@stdlib/stats/array/meanpw' ) );
128+
129+
/**
130+
* @name meanwd
131+
* @memberof ns
132+
* @readonly
133+
* @type {Function}
134+
* @see {@link module:@stdlib/stats/array/meanwd}
135+
*/
136+
setReadOnly( ns, 'meanwd', require( '@stdlib/stats/array/meanwd' ) );
137+
84138
/**
85139
* @name mediansorted
86140
* @memberof ns

0 commit comments

Comments
 (0)