Skip to content

Commit ada2598

Browse files
committed
refactor: update paths
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: passed - 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 6d3a77c commit ada2598

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/d.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ ns.push({
10771077
'@stdlib/stats/strided/dmeanwd',
10781078
'@stdlib/stats/strided/dnanmean',
10791079
'@stdlib/stats/base/nanmeanwd',
1080-
'@stdlib/stats/base/snanmeanwd'
1080+
'@stdlib/stats/strided/snanmeanwd'
10811081
]
10821082
});
10831083

@@ -1799,7 +1799,7 @@ ns.push({
17991799
'@stdlib/stats/strided/dsnanmean',
18001800
'@stdlib/stats/base/nanmeanwd',
18011801
'@stdlib/stats/base/sdsnanmean',
1802-
'@stdlib/stats/base/snanmeanwd'
1802+
'@stdlib/stats/strided/snanmeanwd'
18031803
]
18041804
});
18051805

lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/n.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ ns.push({
116116
'@stdlib/stats/strided/dnanmeanwd',
117117
'@stdlib/stats/base/meanwd',
118118
'@stdlib/stats/base/nanmean',
119-
'@stdlib/stats/base/snanmeanwd'
119+
'@stdlib/stats/strided/snanmeanwd'
120120
]
121121
});
122122

lib/node_modules/@stdlib/namespace/lib/namespace/base/strided/s.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ ns.push({
740740
'@stdlib/stats/strided/dmeanwd',
741741
'@stdlib/stats/base/meanwd',
742742
'@stdlib/stats/base/smean',
743-
'@stdlib/stats/base/snanmeanwd'
743+
'@stdlib/stats/strided/snanmeanwd'
744744
]
745745
});
746746

@@ -1114,8 +1114,8 @@ ns.push({
11141114

11151115
ns.push({
11161116
'alias': 'base.strided.snanmeanwd',
1117-
'path': '@stdlib/stats/base/snanmeanwd',
1118-
'value': require( '@stdlib/stats/base/snanmeanwd' ),
1117+
'path': '@stdlib/stats/strided/snanmeanwd',
1118+
'value': require( '@stdlib/stats/strided/snanmeanwd' ),
11191119
'type': 'Function',
11201120
'related': [
11211121
'@stdlib/stats/strided/dnanmeanwd',

lib/node_modules/@stdlib/stats/base/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ The namespace contains the following statistical functions:
205205
- <span class="signature">[`snanmean( N, x, stride )`][@stdlib/stats/base/snanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values.</span>
206206
- <span class="signature">[`snanmeanors( N, x, strideX )`][@stdlib/stats/strided/snanmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
207207
- <span class="signature">[`snanmeanpn( N, x, strideX )`][@stdlib/stats/strided/snanmeanpn]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
208-
- <span class="signature">[`snanmeanwd( N, x, strideX )`][@stdlib/stats/base/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using Welford's algorithm.</span>
208+
- <span class="signature">[`snanmeanwd( N, x, strideX )`][@stdlib/stats/strided/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using Welford's algorithm.</span>
209209
- <span class="signature">[`snanmin( N, x, strideX )`][@stdlib/stats/base/snanmin]</span><span class="delimiter">: </span><span class="description">calculate the minimum value of a single-precision floating-point strided array, ignoring `NaN` values.</span>
210210
- <span class="signature">[`snanminabs( N, x, strideX )`][@stdlib/stats/base/snanminabs]</span><span class="delimiter">: </span><span class="description">calculate the minimum absolute value of a single-precision floating-point strided array, ignoring `NaN` values.</span>
211211
- <span class="signature">[`snanmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/snanmskmax]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a single-precision floating-point strided array according to a mask, ignoring `NaN` values.</span>
@@ -595,7 +595,7 @@ console.log( objectKeys( ns ) );
595595

596596
[@stdlib/stats/strided/snanmeanpn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/snanmeanpn
597597

598-
[@stdlib/stats/base/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanmeanwd
598+
[@stdlib/stats/strided/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/snanmeanwd
599599

600600
[@stdlib/stats/base/snanmin]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanmin
601601

lib/node_modules/@stdlib/stats/base/nanmeanwd/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ var v = nanmeanwd.ndarray( N, x, 2, 1 );
136136

137137
- If `N <= 0`, both functions return `NaN`.
138138
- If every indexed element is `NaN`, both functions return `NaN`.
139-
- Depending on the environment, the typed versions ([`dnanmeanwd`][@stdlib/stats/strided/dnanmeanwd], [`snanmeanwd`][@stdlib/stats/base/snanmeanwd], etc.) are likely to be significantly more performant.
139+
- Depending on the environment, the typed versions ([`dnanmeanwd`][@stdlib/stats/strided/dnanmeanwd], [`snanmeanwd`][@stdlib/stats/strided/snanmeanwd], etc.) are likely to be significantly more performant.
140140

141141
</section>
142142

@@ -199,7 +199,7 @@ console.log( v );
199199
- <span class="package-name">[`@stdlib/stats/strided/dnanmeanwd`][@stdlib/stats/strided/dnanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring NaN values.</span>
200200
- <span class="package-name">[`@stdlib/stats/base/meanwd`][@stdlib/stats/base/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
201201
- <span class="package-name">[`@stdlib/stats/base/nanmean`][@stdlib/stats/base/nanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array, ignoring NaN values.</span>
202-
- <span class="package-name">[`@stdlib/stats/base/snanmeanwd`][@stdlib/stats/base/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
202+
- <span class="package-name">[`@stdlib/stats/strided/snanmeanwd`][@stdlib/stats/strided/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
203203

204204
</section>
205205

@@ -227,7 +227,7 @@ console.log( v );
227227

228228
[@stdlib/stats/base/nanmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/nanmean
229229

230-
[@stdlib/stats/base/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanmeanwd
230+
[@stdlib/stats/strided/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/snanmeanwd
231231

232232
<!-- </related-links> -->
233233

lib/node_modules/@stdlib/stats/strided/dnanmeanwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ int main( void ) {
316316
- <span class="package-name">[`@stdlib/stats/strided/dmeanwd`][@stdlib/stats/strided/dmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using Welford's algorithm.</span>
317317
- <span class="package-name">[`@stdlib/stats/strided/dnanmean`][@stdlib/stats/strided/dnanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring NaN values.</span>
318318
- <span class="package-name">[`@stdlib/stats/base/nanmeanwd`][@stdlib/stats/base/nanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array, ignoring NaN values and using Welford's algorithm.</span>
319-
- <span class="package-name">[`@stdlib/stats/base/snanmeanwd`][@stdlib/stats/base/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
319+
- <span class="package-name">[`@stdlib/stats/strided/snanmeanwd`][@stdlib/stats/strided/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
320320
321321
</section>
322322
@@ -344,7 +344,7 @@ int main( void ) {
344344
345345
[@stdlib/stats/base/nanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/nanmeanwd
346346
347-
[@stdlib/stats/base/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanmeanwd
347+
[@stdlib/stats/strided/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/snanmeanwd
348348
349349
<!-- </related-links> -->
350350

lib/node_modules/@stdlib/stats/strided/dsnanmeanwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ int main( void ) {
319319
- <span class="package-name">[`@stdlib/stats/strided/dsnanmean`][@stdlib/stats/strided/dsnanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values, using extended accumulation, and returning an extended precision result.</span>
320320
- <span class="package-name">[`@stdlib/stats/base/nanmeanwd`][@stdlib/stats/base/nanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array, ignoring NaN values and using Welford's algorithm.</span>
321321
- <span class="package-name">[`@stdlib/stats/base/sdsnanmean`][@stdlib/stats/base/sdsnanmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using extended accumulation.</span>
322-
- <span class="package-name">[`@stdlib/stats/base/snanmeanwd`][@stdlib/stats/base/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
322+
- <span class="package-name">[`@stdlib/stats/strided/snanmeanwd`][@stdlib/stats/strided/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
323323
324324
</section>
325325
@@ -351,7 +351,7 @@ int main( void ) {
351351
352352
[@stdlib/stats/base/sdsnanmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/sdsnanmean
353353
354-
[@stdlib/stats/base/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanmeanwd
354+
[@stdlib/stats/strided/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/snanmeanwd
355355
356356
<!-- </related-links> -->
357357

lib/node_modules/@stdlib/stats/strided/smeanwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ int main( void ) {
301301
- <span class="package-name">[`@stdlib/stats/strided/dmeanwd`][@stdlib/stats/strided/dmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using Welford's algorithm.</span>
302302
- <span class="package-name">[`@stdlib/stats/base/meanwd`][@stdlib/stats/base/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
303303
- <span class="package-name">[`@stdlib/stats/base/smean`][@stdlib/stats/base/smean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
304-
- <span class="package-name">[`@stdlib/stats/base/snanmeanwd`][@stdlib/stats/base/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
304+
- <span class="package-name">[`@stdlib/stats/strided/snanmeanwd`][@stdlib/stats/strided/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
305305
306306
</section>
307307
@@ -329,7 +329,7 @@ int main( void ) {
329329
330330
[@stdlib/stats/base/smean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/smean
331331
332-
[@stdlib/stats/base/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/snanmeanwd
332+
[@stdlib/stats/strided/snanmeanwd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/snanmeanwd
333333
334334
<!-- </related-links> -->
335335

0 commit comments

Comments
 (0)