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: lib/node_modules/@stdlib/stats/base/ztest/one-sample/results/float32/README.md
+85Lines changed: 85 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -292,6 +292,91 @@ console.log( str );
292
292
293
293
<!-- /.examples -->
294
294
295
+
<!-- C interface documentation. -->
296
+
297
+
* * *
298
+
299
+
<sectionclass="c">
300
+
301
+
## C APIs
302
+
303
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
// Boolean indicating whether the null hypothesis was rejected:
331
+
bool rejected;
332
+
333
+
// Alternative hypothesis:
334
+
int8_t alternative;
335
+
336
+
// Significance level:
337
+
float alpha;
338
+
339
+
// p-value:
340
+
float pValue;
341
+
342
+
// Test statistic:
343
+
float statistic;
344
+
345
+
// Confidence interval:
346
+
float ci[ 2 ];
347
+
348
+
// Mean value under the null hypothesis:
349
+
float nullValue;
350
+
351
+
// Standard error of the mean:
352
+
float sd;
353
+
};
354
+
```
355
+
356
+
</section>
357
+
358
+
<!-- /.usage -->
359
+
360
+
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
361
+
362
+
<sectionclass="notes">
363
+
364
+
</section>
365
+
366
+
<!-- /.notes -->
367
+
368
+
<!-- C API usage examples. -->
369
+
370
+
<sectionclass="examples">
371
+
372
+
</section>
373
+
374
+
<!-- /.examples -->
375
+
376
+
</section>
377
+
378
+
<!-- /.c -->
379
+
295
380
<!-- 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