Skip to content

Commit fd37cf1

Browse files
committed
Auto-generated commit
1 parent 97fc4db commit fd37cf1

9 files changed

Lines changed: 18 additions & 17 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-05-06)
7+
## Unreleased (2026-05-09)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

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)_
1516
- [`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)_
1617

1718
</details>
@@ -24,9 +25,10 @@
2425

2526
### Contributors
2627

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:
2829

2930
- Karan Anand
31+
- Philipp Burckhardt
3032

3133
</section>
3234

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ type Unary = ( t: number ) => number;
3131
*/
3232
interface MGF {
3333
/**
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`.
3535
*
3636
* ## Notes
3737
*
3838
* - If provided `beta <= 0`, the function returns `NaN`.
3939
*
4040
* @param t - input value
41-
* @param mu - mean
41+
* @param mu - location parameter
4242
* @param beta - scale parameter
4343
* @returns evaluated MGF
4444
*
@@ -74,9 +74,9 @@ interface MGF {
7474
( t: number, mu: number, beta: number ): number;
7575

7676
/**
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`.
7878
*
79-
* @param mu - mean
79+
* @param mu - location parameter
8080
* @param beta - scale parameter
8181
* @returns MGF
8282
*
@@ -93,10 +93,10 @@ interface MGF {
9393
}
9494

9595
/**
96-
* Gamma distribution moment-generating function (MGF).
96+
* Gumbel distribution moment-generating function (MGF).
9797
*
9898
* @param t - input value
99-
* @param mu - mean
99+
* @param mu - location parameter
100100
* @param beta - scale parameter
101101
* @returns evaluated MGF
102102
*

include/stdlib/stats/base/dists/gumbel/mgf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `b` at a value `t`.
30+
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `beta` at a value `t`.
3131
*/
3232
double stdlib_base_dists_gumbel_mgf( const double t, const double mu, const double beta );
3333

lib/factory.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ var exp = require( '@stdlib/math-base-special-exp' );
2929
// MAIN //
3030

3131
/**
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`.
3333
*
34-
* @param {number} mu - mean
34+
* @param {number} mu - location parameter
3535
* @param {PositiveNumber} beta - scale parameter
3636
* @returns {Function} MGF
3737
*

lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ var exp = require( '@stdlib/math-base-special-exp' );
2828
// MAIN //
2929

3030
/**
31-
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `b` at a value `t`.
31+
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `beta` at a value `t`.
3232
*
3333
* @param {number} t - input value
34-
* @param {number} mu - mean
34+
* @param {number} mu - location parameter
3535
* @param {PositiveNumber} beta - scale parameter
3636
* @returns {number} evaluated MGF
3737
*

lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `b` at a value `t`.
29+
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `beta` at a value `t`.
3030
*
3131
* @private
3232
* @param {number} t - input value

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "stdlib/math/base/special/exp.h"
2323

2424
/**
25-
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `b` at a value `t`.
25+
* Evaluates the moment-generating function (MGF) for a Gumbel distribution with location parameter `mu` and scale parameter `beta` at a value `t`.
2626
*
2727
* @param t input value
2828
* @param mu location parameter

0 commit comments

Comments
 (0)