From 103e0a13bbc32a09d818a9edf0bcc76be6454509 Mon Sep 17 00:00:00 2001 From: David Given Date: Sun, 10 Jan 2021 01:06:13 +0100 Subject: [PATCH] Typo fix. --- scripts/analysedriveresponse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/analysedriveresponse.py b/scripts/analysedriveresponse.py index b3d4367a..41068301 100644 --- a/scripts/analysedriveresponse.py +++ b/scripts/analysedriveresponse.py @@ -7,7 +7,7 @@ TICKS_PER_US = TICK_FREQUENCY / 1e6 print(TICKS_PER_US) # Load data. -data = numpy.loadtxt(open("analysis.csv", "rb"), delimiter=",", skiprows=1) +data = numpy.loadtxt(open("driveresponse.csv", "rb"), delimiter=",", skiprows=1) labels = data[:, 0] frequencies = data[:, 1:]