This commit is contained in:
alicja.m.musial 2020-04-03 20:53:04 +02:00
parent 05498fc0d2
commit 71b227bee9

View File

@ -7,7 +7,7 @@ def readFile(file, y):
countL = 0
for line in inFile:
countL += 1
y2 = y.append(float(line.strip()))
y2 = y.append(float(line.strip()))
return countL, y2;
def createplotWER():