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
- [`31faa3e`](https://github.com/stdlib-js/stdlib/commit/31faa3e761d92fe94a35d941bed6640380e21b37) - add C implementation for `stats/base/dists/arcsine/kurtosis` [(#3388)](https://github.com/stdlib-js/stdlib/pull/3388)
@@ -400,6 +434,7 @@ A total of 9 people contributed to this release. Thank you to the following cont
400
434
401
435
<details>
402
436
437
+
- [`31faa3e`](https://github.com/stdlib-js/stdlib/commit/31faa3e761d92fe94a35d941bed6640380e21b37) - **feat:** add C implementation for `stats/base/dists/arcsine/kurtosis` [(#3388)](https://github.com/stdlib-js/stdlib/pull/3388) _(by Aayush Khanna, Philipp Burckhardt, stdlib-bot)_
403
438
- [`e9d539e`](https://github.com/stdlib-js/stdlib/commit/e9d539ed6f0185d2455a45b5e29bd50d5c556db5) - **feat:** add C implementation for `stats/base/dists/invgamma/entropy` [(#3682)](https://github.com/stdlib-js/stdlib/pull/3682) _(by Aayush Khanna, Philipp Burckhardt, stdlib-bot)_
404
439
- [`222ef72`](https://github.com/stdlib-js/stdlib/commit/222ef725730746806fa15ac1d735f0284cf4616e) - **feat:** add C implementation for `stats/base/dists/arcsine/entropy` [(#3379)](https://github.com/stdlib-js/stdlib/pull/3379) _(by Aayush Khanna, Philipp Burckhardt)_
405
440
- [`5019fab`](https://github.com/stdlib-js/stdlib/commit/5019fab885f33507350e6b7ec6a61e1e283d6249) - **feat:** add C implementation for `stats/base/dists/bernoulli/mean` [(#3451)](https://github.com/stdlib-js/stdlib/pull/3451) _(by Vivek maurya, Athan Reines, stdlib-bot)_
Copy file name to clipboardExpand all lines: base/dists/arcsine/kurtosis/README.md
+95Lines changed: 95 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,101 @@ for ( i = 0; i < 10; i++ ) {
131
131
132
132
<!-- /.examples -->
133
133
134
+
<!-- C interface documentation. -->
135
+
136
+
* * *
137
+
138
+
<sectionclass="c">
139
+
140
+
## C APIs
141
+
142
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
209
+
return min + ( v * ( max - min ) );
210
+
}
211
+
212
+
for ( i = 0; i < 25; i++ ) {
213
+
a = random_uniform( 0, 20 );
214
+
b = random_uniform( 0, 20 ) + a;
215
+
y = stdlib_base_dists_arcsine_kurtosis( a, b );
216
+
printf( "a: %lf, b: %lf, Kurt(X;a,b): %lf\n", a, b, y );
217
+
}
218
+
}
219
+
```
220
+
221
+
</section>
222
+
223
+
<!-- /.examples -->
224
+
225
+
</section>
226
+
227
+
<!-- /.c -->
228
+
134
229
<!-- 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