aboutsummaryrefslogtreecommitdiff
path: root/qolab/data
diff options
context:
space:
mode:
Diffstat (limited to 'qolab/data')
-rw-r--r--qolab/data/__init__.py6
-rw-r--r--qolab/data/trace.py16
2 files changed, 22 insertions, 0 deletions
diff --git a/qolab/data/__init__.py b/qolab/data/__init__.py
new file mode 100644
index 0000000..528815a
--- /dev/null
+++ b/qolab/data/__init__.py
@@ -0,0 +1,6 @@
+
+from .trace import Trace
+
+__all__ = [
+ "Trace",
+]
diff --git a/qolab/data/trace.py b/qolab/data/trace.py
new file mode 100644
index 0000000..9b14264
--- /dev/null
+++ b/qolab/data/trace.py
@@ -0,0 +1,16 @@
+
+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()
+