This commit is contained in:
alicja.m.musial 2020-04-03 20:47:54 +02:00
parent 45c382b3a3
commit 345142d14c

View File

@ -7,7 +7,7 @@ def readFile(file):
countL = 0
for line in inFile:
countL += 1
y2 = [[0] for row in data]
y2 = np.array[[0] for row in data]
return countL, y2;
def createplotWER():