You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,15 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2026-05-06)
7
+
## Unreleased (2026-05-09)
8
8
9
9
<sectionclass="commits">
10
10
11
11
### Commits
12
12
13
13
<details>
14
14
15
+
-[`7b81718`](https://github.com/stdlib-js/stdlib/commit/7b81718b12f5f50895bc6f963f1869c1be63e6b6) - **docs:** correct parameter prose in `stats/base/dists/gumbel/mgf` doc comments [(#12007)](https://github.com/stdlib-js/stdlib/pull/12007)_(by Philipp Burckhardt)_
15
16
-[`9a51841`](https://github.com/stdlib-js/stdlib/commit/9a51841213eb13adbd6b8fe36d96c00aac9fbb17) - **bench:** refactor to use string interpolation in `stats/base`[(#11393)](https://github.com/stdlib-js/stdlib/pull/11393)_(by Karan Anand)_
16
17
17
18
</details>
@@ -24,9 +25,10 @@
24
25
25
26
### Contributors
26
27
27
-
A total of 1 person contributed to this release. Thank you to this contributor:
28
+
A total of 2 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardExpand all lines: docs/types/index.d.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -31,14 +31,14 @@ type Unary = ( t: number ) => number;
31
31
*/
32
32
interfaceMGF{
33
33
/**
34
-
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `b` at a value `t`.
34
+
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `beta` at a value `t`.
35
35
*
36
36
* ## Notes
37
37
*
38
38
* - If provided `beta <= 0`, the function returns `NaN`.
39
39
*
40
40
* @param t - input value
41
-
* @param mu - mean
41
+
* @param mu - location parameter
42
42
* @param beta - scale parameter
43
43
* @returns evaluated MGF
44
44
*
@@ -74,9 +74,9 @@ interface MGF {
74
74
(t: number,mu: number,beta: number): number;
75
75
76
76
/**
77
-
* Returns a function for evaluating the moment-generating function (MGF) of a Gumbel distribution with location parameter `mu` and scale parameter `b`.
77
+
* Returns a function for evaluating the moment-generating function (MGF) of a Gumbel distribution with location parameter `mu` and scale parameter `beta`.
78
78
*
79
-
* @param mu - mean
79
+
* @param mu - location parameter
80
80
* @param beta - scale parameter
81
81
* @returns MGF
82
82
*
@@ -93,10 +93,10 @@ interface MGF {
93
93
}
94
94
95
95
/**
96
-
* Gamma distribution moment-generating function (MGF).
96
+
* Gumbel distribution moment-generating function (MGF).
Copy file name to clipboardExpand all lines: lib/factory.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,9 @@ var exp = require( '@stdlib/math-base-special-exp' );
29
29
// MAIN //
30
30
31
31
/**
32
-
* Returns a function for evaluating the moment-generating function (MGF) of a Gumbel distribution with location parameter `mu` and scale parameter `b`.
32
+
* Returns a function for evaluating the moment-generating function (MGF) of a Gumbel distribution with location parameter `mu` and scale parameter `beta`.
0 commit comments