From ec127bc56bafe4a946b001aa052237c0d0d32aa9 Mon Sep 17 00:00:00 2001 From: Markus Rosenstihl Date: Thu, 18 Sep 2014 22:49:12 +0200 Subject: [PATCH] Show derivative of real and imag part --- ExtraDifferential.py | 42 ++++++++++++++++++++++++++++++++++++++++++ ExtraDifferential.ui | 31 +++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 ExtraDifferential.py create mode 100644 ExtraDifferential.ui diff --git a/ExtraDifferential.py b/ExtraDifferential.py new file mode 100644 index 0000000..1e72653 --- /dev/null +++ b/ExtraDifferential.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'ExtraDifferential.ui' +# +# Created: Tue Jul 29 08:56:48 2014 +# by: PyQt4 UI code generator 4.11.1 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + def _fromUtf8(s): + return s + +try: + _encoding = QtGui.QApplication.UnicodeUTF8 + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig, _encoding) +except AttributeError: + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig) + +class Ui_Form(object): + def setupUi(self, Form): + Form.setObjectName(_fromUtf8("Form")) + Form.resize(668, 556) + self.horizontalLayout = QtGui.QHBoxLayout(Form) + self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) + self.graphicsView = PlotWidget(Form) + self.graphicsView.setObjectName(_fromUtf8("graphicsView")) + self.horizontalLayout.addWidget(self.graphicsView) + + self.retranslateUi(Form) + QtCore.QMetaObject.connectSlotsByName(Form) + + def retranslateUi(self, Form): + Form.setWindowTitle(_translate("Form", "Form", None)) + +from pyqtgraph import PlotWidget diff --git a/ExtraDifferential.ui b/ExtraDifferential.ui new file mode 100644 index 0000000..0dd8bf5 --- /dev/null +++ b/ExtraDifferential.ui @@ -0,0 +1,31 @@ + + + Form + + + + 0 + 0 + 668 + 556 + + + + Form + + + + + + + + + + PlotWidget + QGraphicsView +
pyqtgraph
+
+
+ + +