Skip to content

Commit 6bb24c2

Browse files
committed
Auto-generated commit
1 parent b755312 commit 6bb24c2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-03-29)
7+
## Unreleased (2025-03-30)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`4894ba9`](https://github.com/stdlib-js/stdlib/commit/4894ba93c712a1b42242c1c597afa9cdc811ad8c) - **refactor:** update paths _(by Aayush Khanna)_
1516
- [`17c4e41`](https://github.com/stdlib-js/stdlib/commit/17c4e41ad480a465b085afa0de85e34957861710) - **refactor:** update paths _(by Aayush Khanna)_
1617

1718
</details>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ var v = stdevch.ndarray( N, 1, x, 2, 1 );
216216
- If `N <= 0`, both functions return `NaN`.
217217
- If `N - c` is less than or equal to `0` (where `c` corresponds to the provided degrees of freedom adjustment), both functions return `NaN`.
218218
- The underlying algorithm is a specialized case of Neely's two-pass algorithm. As the standard deviation is invariant with respect to changes in the location parameter, the underlying algorithm uses the first strided array element as a trial mean to shift subsequent data values and thus mitigate catastrophic cancellation. Accordingly, the algorithm's accuracy is best when data is **unordered** (i.e., the data is **not** sorted in either ascending or descending order such that the first value is an "extreme" value).
219-
- Depending on the environment, the typed versions ([`dstdevch`][@stdlib/stats/strided/dstdevch], [`sstdevch`][@stdlib/stats/base/sstdevch], etc.) are likely to be significantly more performant.
219+
- Depending on the environment, the typed versions ([`dstdevch`][@stdlib/stats/strided/dstdevch], [`sstdevch`][@stdlib/stats/strided/sstdevch], etc.) are likely to be significantly more performant.
220220

221221
</section>
222222

@@ -276,7 +276,7 @@ console.log( v );
276276

277277
- <span class="package-name">[`@stdlib/stats-strided/dstdevch`][@stdlib/stats/strided/dstdevch]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass trial mean algorithm.</span>
278278
- <span class="package-name">[`@stdlib/stats-base/nanstdevch`][@stdlib/stats/base/nanstdevch]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array ignoring NaN values and using a one-pass trial mean algorithm.</span>
279-
- <span class="package-name">[`@stdlib/stats-base/sstdevch`][@stdlib/stats/base/sstdevch]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using a one-pass trial mean algorithm.</span>
279+
- <span class="package-name">[`@stdlib/stats-strided/sstdevch`][@stdlib/stats/strided/sstdevch]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using a one-pass trial mean algorithm.</span>
280280
- <span class="package-name">[`@stdlib/stats-base/stdev`][@stdlib/stats/base/stdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array.</span>
281281
- <span class="package-name">[`@stdlib/stats-base/variancech`][@stdlib/stats/base/variancech]</span><span class="delimiter">: </span><span class="description">calculate the variance of a strided array using a one-pass trial mean algorithm.</span>
282282

@@ -376,7 +376,7 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
376376

377377
[@stdlib/stats/base/nanstdevch]: https://github.com/stdlib-js/stats-base-nanstdevch
378378

379-
[@stdlib/stats/base/sstdevch]: https://github.com/stdlib-js/stats-base-sstdevch
379+
[@stdlib/stats/strided/sstdevch]: https://github.com/stdlib-js/stats-strided-sstdevch
380380

381381
[@stdlib/stats/base/stdev]: https://github.com/stdlib-js/stats-base-stdev
382382

0 commit comments

Comments
 (0)