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
- [`242b011`](https://github.com/stdlib-js/stdlib/commit/242b011a78ef3fce16befeca9e36629096e952c1) - add C implementation for `stats/base/dists/f/mode` [(#4036)](https://github.com/stdlib-js/stdlib/pull/4036)
@@ -2005,6 +2039,7 @@ A total of 16 people contributed to this release. Thank you to the following con
2005
2039
2006
2040
<details>
2007
2041
2042
+
- [`242b011`](https://github.com/stdlib-js/stdlib/commit/242b011a78ef3fce16befeca9e36629096e952c1) - **feat:** add C implementation for `stats/base/dists/f/mode` [(#4036)](https://github.com/stdlib-js/stdlib/pull/4036) _(by Vivek maurya, Philipp Burckhardt)_
2008
2043
- [`6c141f4`](https://github.com/stdlib-js/stdlib/commit/6c141f4c169d080eec1867c421aa6ffa88b9ebfd) - **feat:** add C implementation for `stats/base/dists/logistic/skewness` [(#4038)](https://github.com/stdlib-js/stdlib/pull/4038) _(by JoyBoy)_
2009
2044
- [`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)_
2010
2045
- [`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)_
Copy file name to clipboardExpand all lines: base/dists/f/mode/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/mode.h"
171
+
```
172
+
173
+
#### stdlib_base_dists_f_mode( d1, d2 )
174
+
175
+
Evaluates the [mode][mode] of a [F][f-distribution] distribution with parameters `d1` (numerator degrees of freedom) and `d2` (denominator degrees of freedom).
176
+
177
+
```c
178
+
double out = stdlib_base_dists_f_mode( 3.0, 5.0 );
179
+
// returns ~0.238
180
+
```
181
+
182
+
The function accepts the following arguments:
183
+
184
+
-**d1**: `[in] double` numerator degrees of freedom.
185
+
-**d2**: `[in] double` denominator 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