diff options
Diffstat (limited to 'scripts/plotdiff')
| -rwxr-xr-x | scripts/plotdiff | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/plotdiff b/scripts/plotdiff index debd7000..7991b735 100755 --- a/scripts/plotdiff +++ b/scripts/plotdiff @@ -11,14 +11,19 @@ with open(sys.argv[1], 'r') as f: for l in f: l = l.strip() s = l.split() + + if l.find("out of range") != -1: + continue + if l.startswith('Compared'): N = int(s[3]) if mean is None: mean = numpy.zeros(int(s[5])) deviation = numpy.zeros(int(s[5])) elif l.startswith('mean'): + print s mean[N] = float(s[2]) - deviation[N] = float(s[5]) + deviation[N] = float(s[4]) plt.plot(mean) plt.plot(deviation) |
