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
+27-2Lines changed: 27 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,37 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2025-04-29)
7
+
## Unreleased (2025-07-25)
8
+
9
+
<sectionclass="features">
10
+
11
+
### Features
12
+
13
+
-[`394df9c`](https://github.com/stdlib-js/stdlib/commit/394df9cbfe1e319625331814813bfffb5113d8d6) - add C implementation for `stats/base/dists/binomial/entropy`[(#4016)](https://github.com/stdlib-js/stdlib/pull/4016)
-[`394df9c`](https://github.com/stdlib-js/stdlib/commit/394df9cbfe1e319625331814813bfffb5113d8d6) - **feat:** add C implementation for `stats/base/dists/binomial/entropy`[(#4016)](https://github.com/stdlib-js/stdlib/pull/4016)_(by Divyansh Seth, Philipp Burckhardt, stdlib-bot)_
-[`7279e43`](https://github.com/stdlib-js/stdlib/commit/7279e433dc1936056560624b5892eea8d9350ef1) - **bench:** update random value generation [(#6853)](https://github.com/stdlib-js/stdlib/pull/6853)_(by Harsh)_
17
40
-[`af55f0d`](https://github.com/stdlib-js/stdlib/commit/af55f0d6d6b4d06c36f46357740ea89a4639ab5b) - **bench:** refactor random number generation in `stats/base/dists/binomial`[(#4841)](https://github.com/stdlib-js/stdlib/pull/4841)_(by Karan Anand)_
@@ -26,11 +49,13 @@
26
49
27
50
### Contributors
28
51
29
-
A total of 3 people contributed to this release. Thank you to the following contributors:
52
+
A total of 5 people contributed to this release. Thank you to the following contributors:
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
return min + (int32_t)( random_uniform( 0.0, 1.0 ) * ( max - min + 1 ) );
249
+
}
250
+
251
+
int main( void ) {
252
+
int32_t n;
253
+
double p;
254
+
double v;
255
+
int i;
256
+
257
+
for ( i = 0; i < 25; i++ ) {
258
+
n = random_int( 0, 100 );
259
+
p = random_uniform( 0.0, 1.0 );
260
+
v = stdlib_base_dists_binomial_entropy( n, p );
261
+
printf( "n: %d, p: %lf, H(X;n,p): %lf\n", n, p, v );
262
+
}
263
+
}
264
+
```
265
+
266
+
</section>
267
+
268
+
<!-- /.examples -->
269
+
270
+
</section>
271
+
272
+
<!-- /.c -->
273
+
174
274
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
0 commit comments