2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 03:08:27 +08:00

applets/plot_xy: use numpy array for default X axis. Closes #458

This commit is contained in:
Sebastien Bourdeauducq 2016-05-30 22:48:32 -05:00
parent e6a351c5ea
commit 5b0f963b98

View File

@ -19,7 +19,7 @@ class XYPlot(pyqtgraph.PlotWidget):
return
x = data.get(self.args.x, (False, None))[1]
if x is None:
x = list(range(len(y)))
x = np.arange(len(y))
error = data.get(self.args.error, (False, None))[1]
fit = data.get(self.args.fit, (False, None))[1]