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 Feb 8, 2025
1 parent ed45099 commit 063e215
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2025-02-07)
## Unreleased (2025-02-08)

<section class="features">

Expand All @@ -20,9 +20,9 @@

### Closed Issues

This release closes the following issue:
A total of 2 issues were closed in this release:

[#3427](https://github.com/stdlib-js/stdlib/issues/3427)
[#3427](https://github.com/stdlib-js/stdlib/issues/3427), [#5091](https://github.com/stdlib-js/stdlib/issues/5091)

</section>

Expand All @@ -34,6 +34,7 @@ This release closes the following issue:

<details>

- [`556ec54`](https://github.com/stdlib-js/stdlib/commit/556ec541cac82efa3eeec2693b7a8daa44ee8cad) - **chore:** refactor according to commit comments [(#5098)](https://github.com/stdlib-js/stdlib/pull/5098) _(by Saurabh Singh, Philipp Burckhardt)_
- [`b1f7e5c`](https://github.com/stdlib-js/stdlib/commit/b1f7e5c17b39382bd4b5246792ee6caa04449f80) - **feat:** add C implementation for `stats/base/dists/beta/logpdf` [(#4050)](https://github.com/stdlib-js/stdlib/pull/4050) _(by Neeraj Pathak, stdlib-bot)_
- [`9394549`](https://github.com/stdlib-js/stdlib/commit/939454926b745326a5b14bcd0924a0526baa93da) - **bench:** refactor random number generation in `stats/base/dists/beta` [(#4837)](https://github.com/stdlib-js/stdlib/pull/4837) _(by Karan Anand)_

Expand All @@ -47,10 +48,12 @@ This release closes the following issue:

### Contributors

A total of 2 people contributed to this release. Thank you to the following contributors:
A total of 4 people contributed to this release. Thank you to the following contributors:

- Karan Anand
- Neeraj Pathak
- Philipp Burckhardt
- Saurabh Singh

</section>

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ int main( void ) {
alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 5.0 );
beta = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 5.0 );
y = stdlib_base_dists_beta_logpdf( x, alpha, beta );
printf( "x: %1f. α: %1f. β: %1f. ln(f(x;α,β)): %lf\n", x, alpha, beta, y );
printf( "x: %lf, α: %lf, β: %lf, ln(f(x;α,β)): %lf\n", x, alpha, beta, y );
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion examples/c/example.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ int main( void ) {
alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 5.0 );
beta = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 5.0 );
y = stdlib_base_dists_beta_logpdf( x, alpha, beta );
printf( "x: %1f. α: %1f. β: %1f. ln(f(x;α,β)): %lf\n", x, alpha, beta, y );
printf( "x: %lf, α: %lf, β: %lf, ln(f(x;α,β)): %lf\n", x, alpha, beta, y );
}
}
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* double y = stdlib_base_dists_beta_logpdf( 0.5, 1.0, 1.0 );
* // returns 0.0
*/
double stdlib_base_dists_beta_logpdf( const double x, double alpha, const double beta ) {
double stdlib_base_dists_beta_logpdf( const double x, const double alpha, const double beta ) {
double out;
if (
stdlib_base_is_nan( x ) ||
Expand Down

0 comments on commit 063e215

Please sign in to comment.