Skip to content

Commit 3255779

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: missing_dependencies - 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 f83492e commit 3255779

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

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
@@ -418,7 +418,7 @@ ns.push({
418418
'type': 'Function',
419419
'related': [
420420
'@stdlib/stats/strided/sdsmean',
421-
'@stdlib/stats/base/sdsnanmeanors'
421+
'@stdlib/stats/strided/sdsnanmeanors'
422422
]
423423
});
424424

@@ -438,8 +438,8 @@ ns.push({
438438

439439
ns.push({
440440
'alias': 'base.strided.sdsnanmeanors',
441-
'path': '@stdlib/stats/base/sdsnanmeanors',
442-
'value': require( '@stdlib/stats/base/sdsnanmeanors' ),
441+
'path': '@stdlib/stats/strided/sdsnanmeanors',
442+
'value': require( '@stdlib/stats/strided/sdsnanmeanors' ),
443443
'type': 'Function',
444444
'related': [
445445
'@stdlib/stats/strided/sdsmeanors',

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The namespace contains the following statistical functions:
8282
- <span class="signature">[`rangeBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/strided/range-by]</span><span class="delimiter">: </span><span class="description">calculate the range of a strided array via a callback function.</span>
8383
- <span class="signature">[`range( N, x, strideX )`][@stdlib/stats/strided/range]</span><span class="delimiter">: </span><span class="description">calculate the range of a strided array.</span>
8484
- <span class="signature">[`sdsnanmean( N, x, stride )`][@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>
85-
- <span class="signature">[`sdsnanmeanors( N, x, stride )`][@stdlib/stats/base/sdsnanmeanors]</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 with extended accumulation.</span>
85+
- <span class="signature">[`sdsnanmeanors( N, x, stride )`][@stdlib/stats/strided/sdsnanmeanors]</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 with extended accumulation.</span>
8686
- <span class="signature">[`smeankbn( N, x, stride )`][@stdlib/stats/strided/smeankbn]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using an improved Kahan–Babuška algorithm.</span>
8787
- <span class="signature">[`smeankbn2( N, x, stride )`][@stdlib/stats/strided/smeankbn2]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using a second-order iterative Kahan–Babuška algorithm.</span>
8888
- <span class="signature">[`smeanlipw( N, x, stride )`][@stdlib/stats/strided/smeanlipw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using a one-pass trial mean algorithm with pairwise summation.</span>
@@ -213,7 +213,7 @@ console.log( objectKeys( ns ) );
213213

214214
[@stdlib/stats/base/sdsnanmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/sdsnanmean
215215

216-
[@stdlib/stats/base/sdsnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/sdsnanmeanors
216+
[@stdlib/stats/strided/sdsnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/sdsnanmeanors
217217

218218
[@stdlib/stats/strided/smeankbn]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/smeankbn
219219

lib/node_modules/@stdlib/stats/base/sdsnanmean/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var sdsnanmeanors = require( '@stdlib/stats/base/sdsnanmeanors' ).ndarray;
23+
var sdsnanmeanors = require( '@stdlib/stats/strided/sdsnanmeanors' ).ndarray;
2424

2525

2626
// MAIN //

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var sdsnanmeanors = require( '@stdlib/stats/base/sdsnanmeanors' );
23+
var sdsnanmeanors = require( '@stdlib/stats/strided/sdsnanmeanors' );
2424

2525

2626
// MAIN //

lib/node_modules/@stdlib/stats/base/sdsnanmean/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
],
3939
"libpath": [],
4040
"dependencies": [
41-
"@stdlib/stats/base/sdsnanmeanors",
41+
"@stdlib/stats/strided/sdsnanmeanors",
4242
"@stdlib/napi/export",
4343
"@stdlib/napi/argv",
4444
"@stdlib/napi/argv-int64",
@@ -59,7 +59,7 @@
5959
],
6060
"libpath": [],
6161
"dependencies": [
62-
"@stdlib/stats/base/sdsnanmeanors"
62+
"@stdlib/stats/strided/sdsnanmeanors"
6363
]
6464
},
6565
{
@@ -75,7 +75,7 @@
7575
],
7676
"libpath": [],
7777
"dependencies": [
78-
"@stdlib/stats/base/sdsnanmeanors"
78+
"@stdlib/stats/strided/sdsnanmeanors"
7979
]
8080
}
8181
]

lib/node_modules/@stdlib/stats/base/sdsnanmean/src/sdsnanmean.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/stats/base/sdsnanmean.h"
20-
#include "stdlib/stats/base/sdsnanmeanors.h"
20+
#include "stdlib/stats/strided/sdsnanmeanors.h"
2121
#include <stdint.h>
2222

2323
/**

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ int main( void ) {
287287
## See Also
288288
289289
- <span class="package-name">[`@stdlib/stats/strided/sdsmean`][@stdlib/stats/strided/sdsmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation.</span>
290-
- <span class="package-name">[`@stdlib/stats/base/sdsnanmeanors`][@stdlib/stats/base/sdsnanmeanors]</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 with extended accumulation.</span>
290+
- <span class="package-name">[`@stdlib/stats/strided/sdsnanmeanors`][@stdlib/stats/strided/sdsnanmeanors]</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 with extended accumulation.</span>
291291
292292
</section>
293293
@@ -307,7 +307,7 @@ int main( void ) {
307307
308308
[@stdlib/stats/strided/sdsmean]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/sdsmean
309309
310-
[@stdlib/stats/base/sdsnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/base/sdsnanmeanors
310+
[@stdlib/stats/strided/sdsnanmeanors]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/sdsnanmeanors
311311
312312
<!-- </related-links> -->
313313

0 commit comments

Comments
 (0)