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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+57Lines changed: 57 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,63 @@
2
2
3
3
> Package changelog.
4
4
5
+
<sectionclass="release"id="unreleased">
6
+
7
+
## Unreleased (2025-01-19)
8
+
9
+
<sectionclass="features">
10
+
11
+
### Features
12
+
13
+
-[`ccaed30`](https://github.com/stdlib-js/stdlib/commit/ccaed309a4bfdc50b0c8f2c78f1ee4e365d51337) - add C implementation for `stats/base/dists/chisquare/variance`[(#3999)](https://github.com/stdlib-js/stdlib/pull/3999)
-[`ccaed30`](https://github.com/stdlib-js/stdlib/commit/ccaed309a4bfdc50b0c8f2c78f1ee4e365d51337) - **feat:** add C implementation for `stats/base/dists/chisquare/variance`[(#3999)](https://github.com/stdlib-js/stdlib/pull/3999)_(by Vivek Maurya, Philipp Burckhardt, stdlib-bot)_
38
+
39
+
</details>
40
+
41
+
</section>
42
+
43
+
<!-- /.commits -->
44
+
45
+
<sectionclass="contributors">
46
+
47
+
### Contributors
48
+
49
+
A total of 2 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardExpand all lines: README.md
+93-1Lines changed: 93 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,98 @@ for ( i = 0; i < 10; i++ ) {
149
149
150
150
<!-- /.examples -->
151
151
152
+
<!-- C interface documentation. -->
153
+
154
+
* * *
155
+
156
+
<sectionclass="c">
157
+
158
+
## C APIs
159
+
160
+
<!-- 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 );
220
+
return min + ( v*(max-min) );
221
+
}
222
+
223
+
int main( void ) {
224
+
double k;
225
+
double y;
226
+
int i;
227
+
228
+
for ( i = 0; i < 25; i++ ) {
229
+
k = random_uniform( 0.0, 20.0 );
230
+
y = stdlib_base_dists_chisquare_variance( k );
231
+
printf( "k: %lf, Var(X;k): %lf\n", k, y );
232
+
}
233
+
}
234
+
```
235
+
236
+
</section>
237
+
238
+
<!-- /.examples -->
239
+
240
+
</section>
241
+
242
+
<!-- /.c -->
243
+
152
244
<!-- 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. -->
153
245
154
246
<sectionclass="references">
@@ -191,7 +283,7 @@ See [LICENSE][stdlib-license].
0 commit comments