-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatistics.c
72 lines (64 loc) · 1.57 KB
/
statistics.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
void statistics(float data[], int sz, float *mean, float *sd){
float sum = 0.0, SD = 0.0;
int i;
for (i = 0; i < sz; ++i) {
sum += data[i];
}
*mean = sum / sz;
for (i = 0; i < sz; ++i) {
SD += pow(data[i] - *mean, 2);
}
*sd = sqrt(SD/sz);
}
int readmatrix(size_t rows, size_t cols, float (*a)[cols], const char* filename)
{
FILE *pf;
pf = fopen (filename, "r");
if (pf == NULL)
return 0;
for(size_t i = 0; i < rows; ++i)
{
for(size_t j = 0; j < cols; ++j)
fscanf(pf, "%f", a[i] + j);
}
fclose (pf);
return 1;
}
int main(int argc, char* argv[]){
int cols = atoi(argv[3]); // num of rows
int rows = atoi(argv[2]);
int j = atoi(argv[4]);
char* filename = argv[1];
float matrix[rows][cols];
int alpha = j/20000;
readmatrix(rows, cols, matrix, filename);
float C[rows];
float T[rows];
if (cols == 4){
for (int r=0; r<rows; r++){
C[r]=matrix[r][2]; // comparisons
T[r] = matrix[r][3]; //time
}
}
if (cols ==2){
for (int r=0; r<rows; r++){
C[r]=matrix[r][0]; // comparisons
T[r] = matrix[r][1]; //time
}
}
float meanC, sdC, meanT, sdT;
statistics(C, rows, &meanC, &sdC);
statistics(T, rows, &meanT, &sdT);
FILE *fp;
const char *file2 = "out/STATS.txt";
fp = fopen(file2, "a+");
if (cols == 4){
fprintf(fp, "%i %f %f %f %f\n", alpha, meanC, sdC, meanT, sdT);}
if (cols==2){
fprintf(fp, "%i %f %f %f %f\n", j, meanC, sdC, meanT, sdT);}
fclose(fp);
return 0;
}