about summary refs log tree commit diff
path: root/src/python/plot_lookuptable.py
diff options
context:
space:
mode:
authorhanemile <emile.hansmaennel@gmail.com>2018-03-19 20:47:13 +0100
committerhanemile <emile.hansmaennel@gmail.com>2018-03-19 20:47:13 +0100
commitd0f19b8bc7ab11449cea028106504cacecd94f66 (patch)
tree8ce0c9298694554a46545731c949fb18332669cb /src/python/plot_lookuptable.py
parent996e5529f566d7c64763c47348fc68fae51ef6a4 (diff)
cleaned up
Diffstat (limited to 'src/python/plot_lookuptable.py')
-rwxr-xr-xsrc/python/plot_lookuptable.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/python/plot_lookuptable.py b/src/python/plot_lookuptable.py
deleted file mode 100755
index 9d5c6f2..0000000
--- a/src/python/plot_lookuptable.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env python3
-
-import matplotlib.pyplot as plt
-
-lookup_arr_a = []
-lookup_arr_b = []
-
-path = "data/2e7.csv"
-
-print("opening data...")
-
-with open(path) as data:
-    print("opened " + path)
-
-    lookup = data.readlines()
-    for i in range(0, len(lookup)):
-        lookup_arr_a.append(lookup[i].split(", ")[0])
-        lookup_arr_b.append(lookup[i].split(", ")[1])
-
-plt.plot(lookup_arr_a, lookup_arr_b)
-plt.show()