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
---
type: pre_push_report
description: Results of running various checks prior to pushing changes.
report:
- task: run_javascript_examples
status: na
- task: run_c_examples
status: na
- task: run_cpp_examples
status: na
- task: run_javascript_readme_examples
status: na
- task: run_c_benchmarks
status: na
- task: run_cpp_benchmarks
status: na
- task: run_fortran_benchmarks
status: na
- task: run_javascript_benchmarks
status: na
- task: run_julia_benchmarks
status: na
- task: run_python_benchmarks
status: na
- task: run_r_benchmarks
status: na
- task: run_javascript_tests
status: na
---
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/hypergeometric/kurtosis/README.md
+102Lines changed: 102 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -147,6 +147,108 @@ for ( i = 0; i < 10; i++ ) {
147
147
148
148
<!-- /.examples -->
149
149
150
+
<!-- C interface documentation. -->
151
+
152
+
* * *
153
+
154
+
<sectionclass="c">
155
+
156
+
## C APIs
157
+
158
+
<!-- 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 );
221
+
return min + ( v*(max-min) );
222
+
}
223
+
224
+
int main( void ) {
225
+
double N;
226
+
double K;
227
+
double n;
228
+
double kurtosis;
229
+
int i;
230
+
231
+
for ( i = 0; i < 10; i++ ) {
232
+
N = stdlib_base_round(random_uniform(0.0, 20.0));
233
+
K = stdlib_base_round(random_uniform(0.0, N));
234
+
n = stdlib_base_round(random_uniform(0.0, K));
235
+
kurtosis = stdlib_base_dists_hypergeometric_kurtosis( N, K, n );
236
+
237
+
printf( "N: %lf, K: %lf, n: %lf, Kurtosis: %lf\n", N, K, n, kurtosis );
238
+
}
239
+
240
+
return 0;
241
+
}
242
+
```
243
+
244
+
</section>
245
+
246
+
<!-- /.examples -->
247
+
248
+
</section>
249
+
250
+
<!-- /.c -->
251
+
150
252
<!-- 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