Blame view
tools/sctk-2.4.10/src/sclite/mcnemar.c
279 Bytes
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#define MAIN #include "sctk.h" int main(int argc, char **argv){ int **table; alloc_2dimarr(table, 2, 2, int); table[0][0] = 100; table[0][1] = 200; table[1][0] = 300; table[1][1] = 400; double conf; do_McNemar(table, "Sys1", "Sys2", TRUE, stdout, &conf); } |