2010-03-22 05:48:52 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
2010-03-22 06:21:56 +00:00
|
|
|
## Add path to library (just for examples; you do not need this)
|
|
|
|
import sys, os
|
2011-04-05 16:53:05 +00:00
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..'))
|
2010-03-22 05:48:52 +00:00
|
|
|
|
2011-04-05 14:35:50 +00:00
|
|
|
|
2010-03-22 05:48:52 +00:00
|
|
|
from scipy import random
|
|
|
|
from numpy import linspace
|
2012-03-02 03:53:52 +00:00
|
|
|
from pyqtgraph.Qt import QtGui, QtCore
|
2011-04-05 14:35:50 +00:00
|
|
|
import pyqtgraph as pg
|
2012-03-02 02:55:32 +00:00
|
|
|
from pyqtgraph import MultiPlotWidget
|
2010-03-22 06:21:56 +00:00
|
|
|
try:
|
|
|
|
from metaarray import *
|
|
|
|
except:
|
2012-05-11 22:05:41 +00:00
|
|
|
print("MultiPlot is only used with MetaArray for now (and you do not have the metaarray package)")
|
2010-03-22 06:21:56 +00:00
|
|
|
exit()
|
|
|
|
|
2010-03-22 05:48:52 +00:00
|
|
|
app = QtGui.QApplication([])
|
|
|
|
mw = QtGui.QMainWindow()
|
2011-06-14 23:47:52 +00:00
|
|
|
mw.resize(800,800)
|
2010-03-22 05:48:52 +00: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 06:21:56 +00:00
|
|
|
|
2011-04-05 14:35:50 +00:00
|
|
|
## Start Qt event loop unless running in interactive mode.
|
2012-12-05 05:25:45 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
|
|
|
|
QtGui.QApplication.instance().exec_()
|
2011-04-05 14:35:50 +00:00
|
|
|
|