From 966d85ba01c5331cd4515e2f74b6fb7e282da51b Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Tue, 4 Sep 2018 15:08:06 +0200 Subject: [PATCH] updates --- utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.py b/utils/utils.py index abd42c76..43140197 100755 --- a/utils/utils.py +++ b/utils/utils.py @@ -372,6 +372,6 @@ def plotResults(): results = np.loadtxt(f, usecols=[2, 3, 4, 5, 6, 7, 8, 9, 10]).T for i in range(9): plt.subplot(2, 5, i + 1) - plt.plot(results[i, :19], marker='.', label=f) + plt.plot(results[i, :], marker='.', label=f) plt.title(s[i]) plt.legend \ No newline at end of file