##// END OF EJS Templates
Adicion de la clase ProfilePlot, CoherencePLot en el modulo jroplot.py...
Adicion de la clase ProfilePlot, CoherencePLot en el modulo jroplot.py Adicion de los metodos para graficos multilinea en figure.py y en mpldriver.py Se agrega el colormap como parametro para el metodo addpcolor en mpldriver.py Se hacen ajustes en los xticks cuando la diferencia entre xmax y xmin es menor igual a uno.

File last commit:

r208:f0e2ebb4337f
r229:22aec8924dc0
Show More
testSignalChainGUI.py
25 lines | 624 B | text/x-python | PythonLexer
/ schainpy / gui / testSignalChainGUI.py
#!/usr/bin/python
# -*- coding: utf-8 -*-
#from PyQt4 import QtCore, QtGui
from PyQt4.QtGui import QApplication
#from PyQt4.QtCore import pyqtSignature
#from Controller.workspace import Workspace
#from Controller.mainwindow import InitWindow
#from Controller.initwindow import InitWindow
#from Controller.window import window
from viewcontroller.mainwindow import MainWindow
#import time
def main():
import sys
app = QApplication(sys.argv)
#wnd=InitWindow()
wnd=MainWindow()
#wnd=Workspace()
wnd.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()