Skip to content

Commit c197501

Browse files
committed
Auto-generated commit
1 parent ed1e042 commit c197501

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

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 (2026-06-28)
7+
## Unreleased (2026-06-29)
88

99
<section class="features">
1010

@@ -90,6 +90,7 @@ A total of 5 issues were closed in this release:
9090

9191
<details>
9292

93+
- [`0d7bf9d`](https://github.com/stdlib-js/stdlib/commit/0d7bf9d3a61ebe401eb6f8f8e12a9ea096eb3ccf) - **docs:** rename link reference label [(#13195)](https://github.com/stdlib-js/stdlib/pull/13195) _(by Philipp Burckhardt)_
9394
- [`ca49ceb`](https://github.com/stdlib-js/stdlib/commit/ca49ceb1e17979e0ecb77bc50dedd14b7515b46f) - **refactor:** rename internal variable [(#13167)](https://github.com/stdlib-js/stdlib/pull/13167) _(by Philipp Burckhardt)_
9495
- [`4a927af`](https://github.com/stdlib-js/stdlib/commit/4a927afaffbf44d28e2ac942fb5b6cfbe1455e35) - **refactor:** rename internal variable [(#13156)](https://github.com/stdlib-js/stdlib/pull/13156) _(by Philipp Burckhardt)_
9596
- [`ba7afec`](https://github.com/stdlib-js/stdlib/commit/ba7afec2a7f1435a3251f347873db6be1b1107ae) - **docs:** remove unused import [(#13142)](https://github.com/stdlib-js/stdlib/pull/13142) _(by Philipp Burckhardt)_

base/dists/degenerate/mgf/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ limitations under the License.
2020

2121
# Moment-Generating Function
2222

23-
> [Degenerate][degenerate] distribution moment-generating function (MGF).
23+
> [Degenerate][degenerate-distribution] distribution moment-generating function (MGF).
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

2727
<section class="intro">
2828

29-
The [moment-generating function][mgf] for a [degenerate][degenerate] random variable is
29+
The [moment-generating function][mgf] for a [degenerate][degenerate-distribution] random variable is
3030

3131
<!-- <equation class="equation" label="eq:degenerate_mgf" align="center" raw="M_X(t) := e^{\mu t}" alt="Moment-generating function (MGF) of a degenerate distribution."> -->
3232

@@ -59,7 +59,7 @@ var mgf = require( '@stdlib/stats/base/dists/degenerate/mgf' );
5959

6060
#### mgf( t, mu )
6161

62-
Evaluates the moment-generating function ([MGF][mgf]) of a [degenerate][degenerate] distribution with parameter `mu` (mean).
62+
Evaluates the moment-generating function ([MGF][mgf]) of a [degenerate][degenerate-distribution] distribution with parameter `mu` (mean).
6363

6464
```javascript
6565
var y = mgf( 1.0, 1.0 );
@@ -81,7 +81,7 @@ y = mgf( 0.0, NaN );
8181

8282
#### mgf.factory( mu )
8383

84-
Returns a function for evaluating the [moment-generating function][mgf] of a [degenerate][degenerate] distribution with parameter `mu` (mean).
84+
Returns a function for evaluating the [moment-generating function][mgf] of a [degenerate][degenerate-distribution] distribution with parameter `mu` (mean).
8585

8686
```javascript
8787
var mymgf = mgf.factory( 10.0 );
@@ -156,7 +156,7 @@ logEachMap( 'x: %0.4f, µ: %0.4f, M_X(t;µ): %0.4f', t, mu, mgf );
156156

157157
#### stdlib_base_dists_degenerate_mgf( t, mu )
158158

159-
Evaluates the moment-generating function ([MGF][mgf]) of a [degenerate][degenerate] distribution with parameter `mu` (mean).
159+
Evaluates the moment-generating function ([MGF][mgf]) of a [degenerate][degenerate-distribution] distribution with parameter `mu` (mean).
160160

161161
```c
162162
double out = stdlib_base_dists_degenerate_mgf( 1.0, 1.0 );
@@ -244,7 +244,7 @@ int main( void ) {
244244

245245
<section class="links">
246246

247-
[degenerate]: https://en.wikipedia.org/wiki/Degenerate_distribution
247+
[degenerate-distribution]: https://en.wikipedia.org/wiki/Degenerate_distribution
248248

249249
[mgf]: https://en.wikipedia.org/wiki/Moment-generating_function
250250

0 commit comments

Comments
 (0)