Skip to content

Commit 316aaf9

Browse files
committed
Auto-generated commit
1 parent 76c0789 commit 316aaf9

3 files changed

Lines changed: 16 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21830,6 +21830,7 @@ A total of 57 people contributed to this release. Thank you to the following con
2183021830

2183121831
<details>
2183221832

21833+
- [`a7eb96f`](https://github.com/stdlib-js/stdlib/commit/a7eb96ff3260ae692875271ebf92116b25b9c99b) - **docs:** update namespace table of contents [(#6803)](https://github.com/stdlib-js/stdlib/pull/6803) _(by stdlib-bot)_
2183321834
- [`22e441e`](https://github.com/stdlib-js/stdlib/commit/22e441e3ba728abb2a8b9853187dcec3169c1f7d) - **docs:** use consistent terms _(by Athan Reines)_
2183421835
- [`75f4595`](https://github.com/stdlib-js/stdlib/commit/75f4595586d2dd4ff1fd13b17f5b88464d04e403) - **docs:** use consistent terms _(by Athan Reines)_
2183521836
- [`241d973`](https://github.com/stdlib-js/stdlib/commit/241d9733f1c33c635badfb7f801125988c12b1e8) - **fix:** update dispatch table _(by Athan Reines)_

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,10 @@ Other statistical functions included are:
130130

131131
<div class="namespace-toc">
132132

133+
- <span class="signature">[`cumax( x[, options] )`][@stdlib/stats/cumax]</span><span class="delimiter">: </span><span class="description">compute the cumulative maximum value along one or more ndarray dimensions.</span>
133134
- <span class="signature">[`kde2d()`][@stdlib/stats/kde2d]</span><span class="delimiter">: </span><span class="description">two-dimensional kernel density estimation.</span>
134135
- <span class="signature">[`lowess( x, y[, opts] )`][@stdlib/stats/lowess]</span><span class="delimiter">: </span><span class="description">locally-weighted polynomial regression via the LOWESS algorithm.</span>
136+
- <span class="signature">[`max( x[, options] )`][@stdlib/stats/max]</span><span class="delimiter">: </span><span class="description">compute the maximum value along one or more ndarray dimensions.</span>
135137
- <span class="signature">[`padjust( pvals, method[, comparisons] )`][@stdlib/stats/padjust]</span><span class="delimiter">: </span><span class="description">adjust supplied p-values for multiple comparisons.</span>
136138
- <span class="signature">[`ranks( arr[, opts] )`][@stdlib/stats/ranks]</span><span class="delimiter">: </span><span class="description">compute ranks for values of an array-like object.</span>
137139

@@ -244,10 +246,14 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
244246

245247
<!-- <toc-links> -->
246248

249+
[@stdlib/stats/cumax]: https://github.com/stdlib-js/stats/tree/main/cumax
250+
247251
[@stdlib/stats/kde2d]: https://github.com/stdlib-js/stats/tree/main/kde2d
248252

249253
[@stdlib/stats/lowess]: https://github.com/stdlib-js/stats/tree/main/lowess
250254

255+
[@stdlib/stats/max]: https://github.com/stdlib-js/stats/tree/main/max
256+
251257
[@stdlib/stats/padjust]: https://github.com/stdlib-js/stats/tree/main/padjust
252258

253259
[@stdlib/stats/ranks]: https://github.com/stdlib-js/stats/tree/main/ranks

base/ndarray/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@ The namespace exposes the following APIs:
4545

4646
<div class="namespace-toc">
4747

48+
- <span class="signature">[`cumax( arrays )`][@stdlib/stats/base/ndarray/cumax]</span><span class="delimiter">: </span><span class="description">compute the cumulative maximum value of a one-dimensional ndarray.</span>
49+
- <span class="signature">[`dcumax( arrays )`][@stdlib/stats/base/ndarray/dcumax]</span><span class="delimiter">: </span><span class="description">compute the cumulative maximum value of a one-dimensional double-precision floating-point ndarray.</span>
4850
- <span class="signature">[`dmax( arrays )`][@stdlib/stats/base/ndarray/dmax]</span><span class="delimiter">: </span><span class="description">compute the maximum value of a one-dimensional double-precision floating-point ndarray.</span>
4951
- <span class="signature">[`max( arrays )`][@stdlib/stats/base/ndarray/max]</span><span class="delimiter">: </span><span class="description">compute the maximum value of a one-dimensional ndarray.</span>
52+
- <span class="signature">[`scumax( arrays )`][@stdlib/stats/base/ndarray/scumax]</span><span class="delimiter">: </span><span class="description">compute the cumulative maximum value of a one-dimensional single-precision floating-point ndarray.</span>
5053
- <span class="signature">[`smax( arrays )`][@stdlib/stats/base/ndarray/smax]</span><span class="delimiter">: </span><span class="description">compute the maximum value of a one-dimensional single-precision floating-point ndarray.</span>
5154

5255
</div>
@@ -90,10 +93,16 @@ console.log( objectKeys( ns ) );
9093

9194
<!-- <toc-links> -->
9295

96+
[@stdlib/stats/base/ndarray/cumax]: https://github.com/stdlib-js/stats/tree/main/base/ndarray/cumax
97+
98+
[@stdlib/stats/base/ndarray/dcumax]: https://github.com/stdlib-js/stats/tree/main/base/ndarray/dcumax
99+
93100
[@stdlib/stats/base/ndarray/dmax]: https://github.com/stdlib-js/stats/tree/main/base/ndarray/dmax
94101

95102
[@stdlib/stats/base/ndarray/max]: https://github.com/stdlib-js/stats/tree/main/base/ndarray/max
96103

104+
[@stdlib/stats/base/ndarray/scumax]: https://github.com/stdlib-js/stats/tree/main/base/ndarray/scumax
105+
97106
[@stdlib/stats/base/ndarray/smax]: https://github.com/stdlib-js/stats/tree/main/base/ndarray/smax
98107

99108
<!-- </toc-links> -->

0 commit comments

Comments
 (0)