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
- [`0cab817`](https://github.com/stdlib-js/stdlib/commit/0cab817744fa607bd863eadf32204b36e668d31c) - add C implementation for `stats/base/dists/f/variance` [(#4042)](https://github.com/stdlib-js/stdlib/pull/4042)
@@ -2414,6 +2448,7 @@ A total of 17 people contributed to this release. Thank you to the following con
2414
2448
2415
2449
<details>
2416
2450
2451
+
- [`0cab817`](https://github.com/stdlib-js/stdlib/commit/0cab817744fa607bd863eadf32204b36e668d31c) - **feat:** add C implementation for `stats/base/dists/f/variance` [(#4042)](https://github.com/stdlib-js/stdlib/pull/4042) _(by Vivek maurya, Philipp Burckhardt)_
2417
2452
- [`724d581`](https://github.com/stdlib-js/stdlib/commit/724d58131a5f47d333a0f062e56d489ce1605aa6) - **feat:** add C implementation for `stats/base/dists/exponential/mean` [(#4046)](https://github.com/stdlib-js/stdlib/pull/4046) _(by Prashant Kumar Yadav)_
2418
2453
- [`ed04d90`](https://github.com/stdlib-js/stdlib/commit/ed04d90cd3540e5a3b0b5cb49f623c62935edd1e) - **feat:** add C implementation for `stats/base/dists/rayleigh/mode` [(#4024)](https://github.com/stdlib-js/stdlib/pull/4024) _(by Prashant Kumar Yadav)_
2419
2454
- [`daf43b2`](https://github.com/stdlib-js/stdlib/commit/daf43b2052a0ad89fa4c72caee6d7caedcc4cc38) - **feat:** add C implementation for `stats/base/dists/triangular/mode` [(#4008)](https://github.com/stdlib-js/stdlib/pull/4008) _(by Prashant Kumar Yadav, Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: base/dists/f/variance/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/variance.h"
171
+
```
172
+
173
+
#### stdlib_base_dists_f_variance( d1, d2 )
174
+
175
+
Evaluates the [variance][variance] 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_variance( 3.0, 5.0 );
179
+
// returns ~11.111
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