Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 8, 2024
1 parent 5357be7 commit af62f22
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5885,6 +5885,7 @@ A total of 30 people contributed to this release. Thank you to the following con

<details>

- [`82f78f2`](https://github.com/stdlib-js/stdlib/commit/82f78f2a48a3dd406afbed1a3aa2891ecbc94ab6) - **docs:** update function description comments in `math/base/special/betaln` _(by Gunj Joshi)_
- [`02d4c8a`](https://github.com/stdlib-js/stdlib/commit/02d4c8a5104c324ff3e4b55c6889601e9fd81844) - **bench:** fix variable dtypes [(#2761)](https://github.com/stdlib-js/stdlib/pull/2761) _(by Gunj Joshi, Athan Reines)_
- [`90133e3`](https://github.com/stdlib-js/stdlib/commit/90133e3fcc5deb6ea888468f2b610d1786dbba00) - **bench:** update sample value [(#2763)](https://github.com/stdlib-js/stdlib/pull/2763) _(by Gunj Joshi)_
- [`16db19b`](https://github.com/stdlib-js/stdlib/commit/16db19ba69114e4f4180464e8c4562b35a3078d2) - **feat:** add C implementation for `math/base/special/trigamma` _(by Gunj Joshi)_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extern "C" {
#endif

/**
* Evaluate the natural logarithm of the beta function.
* Evaluates the natural logarithm of the beta function.
*/
double stdlib_base_betaln( const double x, const double y );

Expand Down
2 changes: 1 addition & 1 deletion base/special/betaln/lib/dceval.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var LEN = ALGMCS.length;
// MAIN //

/**
* Evaluate the n-term Chebyshev series at `x`.
* Evaluates the n-term Chebyshev series at `x`.
*
* ## References
*
Expand Down
2 changes: 1 addition & 1 deletion base/special/betaln/lib/gamma_correction.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var XMAX = 3.745194030963158e306;
// MAIN //

/**
* Compute the log gamma correction factor for `x >= 10`.
* Computes the log gamma correction factor for `x >= 10`.
*
* ```tex
* \log(\gamma(x)) = \log(\sqrt{2*\Pi}) + (x-0.5) \cdot \log(x) - x \operatorname{R9LGMC}(x).
Expand Down
2 changes: 1 addition & 1 deletion base/special/betaln/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var correction = require( './gamma_correction.js' );
// MAIN //

/**
* Evaluate the natural logarithm of the beta function.
* Evaluates the natural logarithm of the beta function.
*
* @param {NonNegativeNumber} a - first input value
* @param {NonNegativeNumber} b - second input value
Expand Down
2 changes: 1 addition & 1 deletion base/special/betaln/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
// MAIN //

/**
* Evaluate the natural logarithm of the beta function.
* Evaluates the natural logarithm of the beta function.
*
* @private
* @param {NonNegativeNumber} a - first input value
Expand Down
6 changes: 3 additions & 3 deletions base/special/betaln/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static const double XBIG = 94906265.62425156;
static const double XMAX = 3.745194030963158e306;

/**
* Evaluate the n-term Chebyshev series at `x`.
* Evaluates the n-term Chebyshev series at `x`.
*
* ## References
*
Expand Down Expand Up @@ -90,7 +90,7 @@ static double dceval( const double x ) {
}

/**
* Compute the log gamma correction factor for `x >= 10`.
* Computes the log gamma correction factor for `x >= 10`.
*
* ```tex
* \log(\gamma(x)) = \log(\sqrt{2*\Pi}) + (x-0.5) \cdot \log(x) - x \operatorname{R9LGMC}(x).
Expand All @@ -115,7 +115,7 @@ static double gammaCorrection( const double x ) {
}

/**
* Evaluate the natural logarithm of the beta function.
* Evaluates the natural logarithm of the beta function.
*
* @param a first input value
* @param b second input value
Expand Down

0 comments on commit af62f22

Please sign in to comment.