Skip to content

Commit e71e197

Browse files
committed
Auto-generated commit
1 parent 00c2aa2 commit e71e197

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-06-22)
7+
## Unreleased (2026-06-23)
88

99
<section class="features">
1010

@@ -84,6 +84,8 @@ A total of 4 issues were closed in this release:
8484

8585
<details>
8686

87+
- [`e404167`](https://github.com/stdlib-js/stdlib/commit/e404167cf935b4a7a0fbee91b1d25734409cb235) - **refactor:** reorder import statements [(#13078)](https://github.com/stdlib-js/stdlib/pull/13078) _(by stdlib-bot)_
88+
- [`fb7ba7a`](https://github.com/stdlib-js/stdlib/commit/fb7ba7aa301480bcab339b75cc7562966292e365) - **docs:** update namespace table of contents [(#13079)](https://github.com/stdlib-js/stdlib/pull/13079) _(by stdlib-bot)_
8789
- [`dadabba`](https://github.com/stdlib-js/stdlib/commit/dadabba66e44060c40b231ebf1862aa0453e5285) - **chore:** resolve C compiler warnings _(by Athan Reines)_
8890
- [`fa820b3`](https://github.com/stdlib-js/stdlib/commit/fa820b3ef9805587eae34c589ee0cd91f89de1b2) - **chore:** resolve C compiler warning _(by Athan Reines)_
8991
- [`db6898f`](https://github.com/stdlib-js/stdlib/commit/db6898f04268acaf571817ac991d84f6001c8fcf) - **remove:** remove `stats/strided/dmaxsorted` _(by Neeraj Pathak)_

strided/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ The namespace exports the following:
6363
- <span class="signature">[`dcumin( N, x, strideX, y, strideY )`][@stdlib/stats/strided/dcumin]</span><span class="delimiter">: </span><span class="description">calculate the cumulative minimum of double-precision floating-point strided array elements.</span>
6464
- <span class="signature">[`dcuminabs( N, x, strideX, y, strideY )`][@stdlib/stats/strided/dcuminabs]</span><span class="delimiter">: </span><span class="description">calculate the cumulative minimum absolute value of double-precision floating-point strided array elements.</span>
6565
- <span class="signature">[`distances`][@stdlib/stats/strided/distances]</span><span class="delimiter">: </span><span class="description">distance metrics for strided arrays.</span>
66+
- <span class="signature">[`dmaxSorted( N, x, strideX )`][@stdlib/stats/strided/dmax-sorted]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a sorted double-precision floating-point strided array.</span>
6667
- <span class="signature">[`dmax( N, x, strideX )`][@stdlib/stats/strided/dmax]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a double-precision floating-point strided array.</span>
6768
- <span class="signature">[`dmaxabsSorted( N, x, strideX )`][@stdlib/stats/strided/dmaxabs-sorted]</span><span class="delimiter">: </span><span class="description">calculate the maximum absolute value of a sorted double-precision floating-point strided array.</span>
6869
- <span class="signature">[`dmaxabs( N, x, strideX )`][@stdlib/stats/strided/dmaxabs]</span><span class="delimiter">: </span><span class="description">calculate the maximum absolute value of a double-precision floating-point strided array.</span>
69-
- <span class="signature">[`dmaxSorted( N, x, strideX )`][@stdlib/stats/strided/dmax-sorted]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a sorted double-precision floating-point strided array.</span>
7070
- <span class="signature">[`dmean( N, x, strideX )`][@stdlib/stats/strided/dmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array.</span>
7171
- <span class="signature">[`dmeankbn( N, x, strideX )`][@stdlib/stats/strided/dmeankbn]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using an improved Kahan–Babuška algorithm.</span>
7272
- <span class="signature">[`dmeankbn2( N, x, strideX )`][@stdlib/stats/strided/dmeankbn2]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using a second-order iterative Kahan–Babuška algorithm.</span>
@@ -363,14 +363,14 @@ console.log( objectKeys( ns ) );
363363

364364
[@stdlib/stats/strided/distances]: https://github.com/stdlib-js/stats/tree/main/strided/distances
365365

366+
[@stdlib/stats/strided/dmax-sorted]: https://github.com/stdlib-js/stats/tree/main/strided/dmax-sorted
367+
366368
[@stdlib/stats/strided/dmax]: https://github.com/stdlib-js/stats/tree/main/strided/dmax
367369

368370
[@stdlib/stats/strided/dmaxabs-sorted]: https://github.com/stdlib-js/stats/tree/main/strided/dmaxabs-sorted
369371

370372
[@stdlib/stats/strided/dmaxabs]: https://github.com/stdlib-js/stats/tree/main/strided/dmaxabs
371373

372-
[@stdlib/stats/strided/dmax-sorted]: https://github.com/stdlib-js/stats/tree/main/strided/dmax-sorted
373-
374374
[@stdlib/stats/strided/dmean]: https://github.com/stdlib-js/stats/tree/main/strided/dmean
375375

376376
[@stdlib/stats/strided/dmeankbn]: https://github.com/stdlib-js/stats/tree/main/strided/dmeankbn

strided/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ import dcumin = require( './../../../strided/dcumin' );
2929
import dcuminabs = require( './../../../strided/dcuminabs' );
3030
import distances = require( './../../../strided/distances' );
3131
import dmax = require( './../../../strided/dmax' );
32+
import dmaxSorted = require( './../../../strided/dmax-sorted' );
3233
import dmaxabs = require( './../../../strided/dmaxabs' );
3334
import dmaxabsSorted = require( './../../../strided/dmaxabs-sorted' );
34-
import dmaxSorted = require( './../../../strided/dmax-sorted' );
3535
import dmean = require( './../../../strided/dmean' );
3636
import dmeankbn = require( './../../../strided/dmeankbn' );
3737
import dmeankbn2 = require( './../../../strided/dmeankbn2' );

0 commit comments

Comments
 (0)