]> rtime.felk.cvut.cz Git - lisovros/canprio_benchmark.git/blob - statistics.oct
Added script for counting mean time spent in can_send() depending on count of filter...
[lisovros/canprio_benchmark.git] / statistics.oct
1 #!/usr/bin/octave -qf
2
3 data = load(argv(){1});
4 me = mean(data);
5 mx = max(data);
6 mi = min(data);
7
8 printf("%f %f %f\n", me, mx, mi);
9