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
- [`5bb4ea6`](https://github.com/stdlib-js/stdlib/commit/5bb4ea62d91c1b6ab5210e80db10d44ab2748189) - add C implementation for `stats/base/dists/exponential/kurtosis` [(#4058)](https://github.com/stdlib-js/stdlib/pull/4058)
@@ -1801,6 +1835,7 @@ A total of 16 people contributed to this release. Thank you to the following con
1801
1835
1802
1836
<details>
1803
1837
1838
+
- [`5bb4ea6`](https://github.com/stdlib-js/stdlib/commit/5bb4ea62d91c1b6ab5210e80db10d44ab2748189) - **feat:** add C implementation for `stats/base/dists/exponential/kurtosis` [(#4058)](https://github.com/stdlib-js/stdlib/pull/4058) _(by JoyBoy)_
1804
1839
- [`113f340`](https://github.com/stdlib-js/stdlib/commit/113f3407b59c22f8b20a38147ef3470a8b30cd4a) - **feat:** add C implementation for `stats/base/dists/logistic/mean` [(#4028)](https://github.com/stdlib-js/stdlib/pull/4028) _(by JoyBoy, Philipp Burckhardt)_
1805
1840
- [`584df38`](https://github.com/stdlib-js/stdlib/commit/584df38b388c730c3291dae63ef9241802e5371d) - **feat:** add C implementation for `stats/base/dists/exponential/skewness` [(#4056)](https://github.com/stdlib-js/stdlib/pull/4056) _(by JoyBoy, Philipp Burckhardt)_
1806
1841
- [`4d6fbbd`](https://github.com/stdlib-js/stdlib/commit/4d6fbbd6ec73ee9d0ccb3bba1869f34d184329dd) - **feat:** add C implementation for `stats/base/dists/uniform/entropy` [(#4021)](https://github.com/stdlib-js/stdlib/pull/4021) _(by Divyansh Seth, Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: base/dists/exponential/kurtosis/README.md
+88Lines changed: 88 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,94 @@ for ( i = 0; i < 10; i++ ) {
114
114
115
115
<!-- /.examples -->
116
116
117
+
<!-- C interface documentation. -->
118
+
119
+
* * *
120
+
121
+
<sectionclass="c">
122
+
123
+
## C APIs
124
+
125
+
<!-- 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 );
185
+
return min + ( v*(max-min) );
186
+
}
187
+
188
+
int main( void ) {
189
+
double lambda;
190
+
double y;
191
+
int i;
192
+
193
+
for ( i = 0; i < 25; i++ ) {
194
+
lambda = random_uniform( 0.0, 20.0 );
195
+
y = stdlib_base_dists_exponential_kurtosis( lambda );
196
+
printf( "λ: %lf, Kurt[X;λ]: %lf\n", lambda, y );
197
+
}
198
+
}
199
+
```
200
+
201
+
</section>
202
+
203
+
<!-- /.examples -->
204
+
117
205
<!-- 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