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
- [`df52159`](https://github.com/stdlib-js/stdlib/commit/df521591cd6b8d5bb9cfa241e241231d45319285) - add C implementation for `stats/base/dists/f/entropy` [(#4044)](https://github.com/stdlib-js/stdlib/pull/4044)
@@ -1937,6 +1971,7 @@ A total of 16 people contributed to this release. Thank you to the following con
1937
1971
1938
1972
<details>
1939
1973
1974
+
- [`df52159`](https://github.com/stdlib-js/stdlib/commit/df521591cd6b8d5bb9cfa241e241231d45319285) - **feat:** add C implementation for `stats/base/dists/f/entropy` [(#4044)](https://github.com/stdlib-js/stdlib/pull/4044) _(by Vivek maurya, Philipp Burckhardt)_
1940
1975
- [`67eacfd`](https://github.com/stdlib-js/stdlib/commit/67eacfd73be1ac9ac96595eee7dabd21ccdc2ffb) - **feat:** add C implementation for `stats/base/dists/f/kurtosis` [(#4043)](https://github.com/stdlib-js/stdlib/pull/4043) _(by Vivek maurya, Philipp Burckhardt)_
1941
1976
- [`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)_
1942
1977
- [`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)_
Copy file name to clipboardExpand all lines: base/dists/f/entropy/README.md
+96Lines changed: 96 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,6 +144,102 @@ for ( i = 0; i < 10; i++ ) {
144
144
145
145
<!-- /.examples -->
146
146
147
+
<!-- C interface documentation. -->
148
+
149
+
* * *
150
+
151
+
<sectionclass="c">
152
+
153
+
## C APIs
154
+
155
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
156
+
157
+
<sectionclass="intro">
158
+
159
+
</section>
160
+
161
+
<!-- /.intro -->
162
+
163
+
<!-- C usage documentation. -->
164
+
165
+
<sectionclass="usage">
166
+
167
+
### Usage
168
+
169
+
```c
170
+
#include"stdlib/stats/base/dists/f/entropy.h"
171
+
```
172
+
173
+
#### stdlib_base_dists_f_entropy( d1, d2 )
174
+
175
+
Evaluates the [differential entropy][entropy] of a [F][f-distribution] distribution with numerator degrees of freedom `d1` and denominator degrees of freedom `d2` (in [nats][nats]).
176
+
177
+
```c
178
+
double out = stdlib_base_dists_f_entropy( 3.0, 7.0 );
179
+
// returns ~1.298
180
+
```
181
+
182
+
The function accepts the following arguments:
183
+
184
+
-**d1**: `[in] double` numerator degrees of freedom.
<!-- 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