updates
This commit is contained in:
parent
b04ee34035
commit
966d85ba01
|
@ -372,6 +372,6 @@ def plotResults():
|
||||||
results = np.loadtxt(f, usecols=[2, 3, 4, 5, 6, 7, 8, 9, 10]).T
|
results = np.loadtxt(f, usecols=[2, 3, 4, 5, 6, 7, 8, 9, 10]).T
|
||||||
for i in range(9):
|
for i in range(9):
|
||||||
plt.subplot(2, 5, i + 1)
|
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.title(s[i])
|
||||||
plt.legend
|
plt.legend
|
Loading…
Reference in New Issue