2010-03-22 01:48:52 -04:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
2010-03-22 02:21:56 -04:00
|
|
|
## Add path to library (just for examples; you do not need this)
|
|
|
|
import sys, os
|
2011-04-05 12:53:05 -04:00
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..'))
|
2010-03-22 01:48:52 -04:00
|
|
|
|
2011-04-05 10:35:50 -04:00
|
|
|
|
2010-03-22 01:48:52 -04:00
|
|
|
from scipy import random
|
|
|
|
from numpy import linspace
|
2012-03-01 22:53:52 -05:00
|
|
|
from pyqtgraph.Qt import QtGui, QtCore
|
2011-04-05 10:35:50 -04:00
|
|
|
import pyqtgraph as pg
|
2012-03-01 21:55:32 -05:00
|
|
|
from pyqtgraph import MultiPlotWidget
|
2010-03-22 02:21:56 -04:00
|
|
|
try:
|
|
|
|
from metaarray import *
|
|
|
|
except:
|
2011-04-05 10:35:50 -04:00
|
|
|
print "MultiPlot is only used with MetaArray for now (and you do not have the metaarray package)"
|
2010-03-22 02:21:56 -04:00
|
|
|
exit()
|
|
|
|
|
2010-03-22 01:48:52 -04:00
|
|
|
app = QtGui.QApplication([])
|
|
|
|
mw = QtGui.QMainWindow()
|
2011-06-14 19:47:52 -04:00
|
|
|
mw.resize(800,800)
|
2010-03-22 01:48:52 -04:00
|
|
|
pw = MultiPlotWidget()
|
|
|
|
mw.setCentralWidget(pw)
|
|
|
|
mw.show()
|
|
|
|
|
|
|
|
ma = MetaArray(random.random((3, 1000)), info=[{'name': 'Signal', 'cols': [{'name': 'Col1'}, {'name': 'Col2'}, {'name': 'Col3'}]}, {'name': 'Time', 'vals': linspace(0., 1., 1000)}])
|
|
|
|
pw.plot(ma)
|
2010-03-22 02:21:56 -04:00
|
|
|
|
2011-04-05 10:35:50 -04:00
|
|
|
## Start Qt event loop unless running in interactive mode.
|
|
|
|
if sys.flags.interactive != 1:
|
|
|
|
app.exec_()
|
|
|
|
|