diff options
author | athulappadan | 2016-04-28 11:26:09 +0530 |
---|---|---|
committer | athulappadan | 2016-04-28 11:26:09 +0530 |
commit | eb1d4bd53aaa467e88f24aac6f0099a54c74dce1 (patch) | |
tree | d2742c03c04dd42c85dfb5e736170663a6b5bbee /src/ngspiceSimulation | |
parent | 48ea8755c56ce910bc3f1b7953c3a223e3f4c457 (diff) | |
download | eSim-eb1d4bd53aaa467e88f24aac6f0099a54c74dce1.tar.gz eSim-eb1d4bd53aaa467e88f24aac6f0099a54c74dce1.tar.bz2 eSim-eb1d4bd53aaa467e88f24aac6f0099a54c74dce1.zip |
Revert "plot values stored in a dict"
This reverts commit 6b0082543137b215a752cb7ab46cd59a012309c0.
Diffstat (limited to 'src/ngspiceSimulation')
-rw-r--r-- | src/ngspiceSimulation/pythonPlotting.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/ngspiceSimulation/pythonPlotting.py b/src/ngspiceSimulation/pythonPlotting.py index e4f8fe03..295c0a1d 100644 --- a/src/ngspiceSimulation/pythonPlotting.py +++ b/src/ngspiceSimulation/pythonPlotting.py @@ -52,13 +52,7 @@ class plotWindow(QtGui.QMainWindow): self.a = self.obj_dataext.numVals() self.chkbox=[] - - self.val_dict = {} - - for i in range(0,self.a[0]-1): - self.val_dict[self.obj_dataext.NBList[i]] = self.obj_dataext.y[i] - self.val_dict['x-axis'] = self.obj_dataext.x - + ########### Generating list of colors : self.full_colors = ['r','b','g','y','c','m','k']#,(0.4,0.5,0.2),(0.1,0.4,0.9),(0.4,0.9,0.2),(0.9,0.4,0.9)] self.color = [] |