aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/__init__.py6
-rw-r--r--data/trace.py16
2 files changed, 0 insertions, 22 deletions
diff --git a/data/__init__.py b/data/__init__.py
deleted file mode 100644
index 528815a..0000000
--- a/data/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-
-from .trace import Trace
-
-__all__ = [
- "Trace",
-]
diff --git a/data/trace.py b/data/trace.py
deleted file mode 100644
index 9b14264..0000000
--- a/data/trace.py
+++ /dev/null
@@ -1,16 +0,0 @@
-
-class Trace:
- def __init__(self, descrStr):
- self.descr = descrStr
- self.x = None
- self.xlabel = None
- self.xunit = None
- self.y = None
- self.ylabel = None
- self.yunit = None
-
- def plot(self):
- import matplotlib.pyplot as plt
- plt.plot(self.x, self.y, label=self.descr)
- plt.legend()
-