Skip to content

Commit 3dc3334

Browse files
committed
Auto-generated commit
1 parent 4e50b94 commit 3dc3334

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,7 +4,7 @@
44

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

7-
## Unreleased (2025-12-06)
7+
## Unreleased (2025-12-07)
88

99
<section class="features">
1010

@@ -3510,6 +3510,7 @@ A total of 557 issues were closed in this release:
35103510

35113511
<details>
35123512

3513+
- [`9c412c7`](https://github.com/stdlib-js/stdlib/commit/9c412c7a96d4b5381cda9be8c83f4e701155fe95) - **docs:** update related packages sections [(#8860)](https://github.com/stdlib-js/stdlib/pull/8860) _(by stdlib-bot, Athan Reines)_
35133514
- [`9ab0f17`](https://github.com/stdlib-js/stdlib/commit/9ab0f1770255e4c11d47f859316cd529a0f3dffb) - **docs:** remove unused link definition _(by Athan Reines)_
35143515
- [`ed42a4f`](https://github.com/stdlib-js/stdlib/commit/ed42a4f20e80757e6e855dc9ac4e70ab5a28f423) - **docs:** update related packages sections [(#8835)](https://github.com/stdlib-js/stdlib/pull/8835) _(by stdlib-bot)_
35153516
- [`8be43b3`](https://github.com/stdlib-js/stdlib/commit/8be43b3489187f60926783d3936fb8003f2a8b9a) - **docs:** update examples in `stats/mean` [(#8823)](https://github.com/stdlib-js/stdlib/pull/8823) _(by Sachin Pangal)_

base/ndarray/meanwd/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
2727
The [arithmetic mean][arithmetic-mean] is defined as
2828

2929
<!-- <equation class="equation" label="eq:arithmetic_mean" align="center" raw="\mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i" alt="Equation for the arithmetic mean."> -->
30-
30+
3131
```math
3232
\mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i
3333
```
@@ -46,15 +46,15 @@ The [arithmetic mean][arithmetic-mean] is defined as
4646
<section class="usage">
4747

4848
## Usage
49-
49+
5050
```javascript
5151
var meanwd = require( '@stdlib/stats/base/ndarray/meanwd' );
5252
```
5353

5454
#### meanwd( arrays )
5555

5656
Computes the [arithmetic mean][arithmetic-mean] of a one-dimensional ndarray using Welford's algorithm.
57-
57+
5858
```javascript
5959
var ndarray = require( '@stdlib/ndarray/base/ctor' );
6060

0 commit comments

Comments
 (0)