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
- [`584df38`](https://github.com/stdlib-js/stdlib/commit/584df38b388c730c3291dae63ef9241802e5371d) - add C implementation for `stats/base/dists/exponential/skewness` [(#4056)](https://github.com/stdlib-js/stdlib/pull/4056)
@@ -1704,13 +1738,14 @@ A total of 51 issues were closed in this release:
1704
1738
1705
1739
### Contributors
1706
1740
1707
-
A total of 15 people contributed to this release. Thank you to the following contributors:
1741
+
A total of 16 people contributed to this release. Thank you to the following contributors:
1708
1742
1709
1743
- Aadish Jain
1710
1744
- Aayush Khanna
1711
1745
- Athan Reines
1712
1746
- Divyansh Seth
1713
1747
- Gururaj Gurram
1748
+
- JoyBoy
1714
1749
- Kohantika Nath
1715
1750
- Manvith M
1716
1751
- Neeraj Pathak
@@ -1732,6 +1767,7 @@ A total of 15 people contributed to this release. Thank you to the following con
1732
1767
1733
1768
<details>
1734
1769
1770
+
- [`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)_
1735
1771
- [`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)_
1736
1772
- [`b283652`](https://github.com/stdlib-js/stdlib/commit/b2836521feb83b741d0190d7600f297f0379851f) - **feat:** add C implementation for `stats/base/dists/f/mean` [(#4033)](https://github.com/stdlib-js/stdlib/pull/4033) _(by Vivek maurya)_
1737
1773
- [`118284b`](https://github.com/stdlib-js/stdlib/commit/118284b97293f409c1769047675bed85ddf4dd20) - **feat:** add C implementation for `stats/base/dists/chisquare/skewness` [(#4005)](https://github.com/stdlib-js/stdlib/pull/4005) _(by Vivek maurya, Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: base/dists/exponential/skewness/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_skewness( lambda );
196
+
printf( "λ: %lf, Skewness[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