aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qolab/hardware/scope/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/qolab/hardware/scope/__init__.py b/qolab/hardware/scope/__init__.py
index f5e7ba2..bcbc87c 100644
--- a/qolab/hardware/scope/__init__.py
+++ b/qolab/hardware/scope/__init__.py
@@ -37,6 +37,10 @@ class Scope:
allTraces.addTrace( self.getTrace(chNum, availableNpnts, maxRequiredPoints) )
return( allTraces )
+ def plot(self, **kwargs):
+ allTraces=self.getAllTraces(**kwargs)
+ allTraces.plot()
+
def getConfig(self):
config = self.config.copy()
dconfig = {}