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
- [`7e400e0`](https://github.com/stdlib-js/stdlib/commit/7e400e030ed237390ac962a15f031d15708bd381) - add C implementation for `stats/base/dists/exponential/stdev` [(#4063)](https://github.com/stdlib-js/stdlib/pull/4063)
@@ -1869,6 +1903,7 @@ A total of 16 people contributed to this release. Thank you to the following con
1869
1903
1870
1904
<details>
1871
1905
1906
+
- [`7e400e0`](https://github.com/stdlib-js/stdlib/commit/7e400e030ed237390ac962a15f031d15708bd381) - **feat:** add C implementation for `stats/base/dists/exponential/stdev` [(#4063)](https://github.com/stdlib-js/stdlib/pull/4063) _(by JoyBoy, Philipp Burckhardt)_
1872
1907
- [`7cff91f`](https://github.com/stdlib-js/stdlib/commit/7cff91f740c92525f6fe5fd1bbd9101babff3298) - **feat:** add C implementation for `stats/base/dists/logistic/mode` [(#4029)](https://github.com/stdlib-js/stdlib/pull/4029) _(by JoyBoy)_
1873
1908
- [`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)_
1874
1909
- [`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)_
Copy file name to clipboardExpand all lines: base/dists/exponential/stdev/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
@@ -116,6 +116,94 @@ for ( i = 0; i < 10; i++ ) {
116
116
117
117
<!-- /.examples -->
118
118
119
+
<!-- C interface documentation. -->
120
+
121
+
* * *
122
+
123
+
<sectionclass="c">
124
+
125
+
## C APIs
126
+
127
+
<!-- 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 );
187
+
return min + ( v*(max-min) );
188
+
}
189
+
190
+
int main( void ) {
191
+
double lambda;
192
+
double y;
193
+
int i;
194
+
195
+
for ( i = 0; i < 25; i++ ) {
196
+
lambda = random_uniform( 0.0, 20.0 );
197
+
y = stdlib_base_dists_exponential_stdev( lambda );
198
+
printf( "λ: %lf, Standard Deviation[X;λ]: %lf\n", lambda, y );
199
+
}
200
+
}
201
+
```
202
+
203
+
</section>
204
+
205
+
<!-- /.examples -->
206
+
119
207
<!-- 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