From 363903f0b3c93ccf526f0b218401c8e71ceeb6c5 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 11 Dec 2015 13:56:04 +0000 Subject: Small fixes. --- scripts/plotdiff | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'scripts/plotdiff') 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) -- cgit v1.2.3