@@ -321,7 +321,7 class RTIPlot(Figure): | |||
|
321 | 321 | self.setWinTitle(title) |
|
322 | 322 | |
|
323 | 323 | for i in range(self.nplots): |
|
324 | title = "Channel %d: %s" %(dataOut.channelList[i], thisDatetime.strftime("%d-%b-%Y %H:%M:%S")) | |
|
324 | title = "Channel %d: %s" %(dataOut.channelList[i]+1, thisDatetime.strftime("%d-%b-%Y %H:%M:%S")) | |
|
325 | 325 | axes = self.axesList[i*self.__nsubplots] |
|
326 | 326 | zdB = avgdB[i].reshape((1,-1)) |
|
327 | 327 | axes.pcolorbuffer(x, y, zdB, |
@@ -484,7 +484,7 class SpectraPlot(Figure): | |||
|
484 | 484 | self.setWinTitle(title) |
|
485 | 485 | |
|
486 | 486 | for i in range(self.nplots): |
|
487 | title = "Channel %d: %4.2fdB" %(dataOut.channelList[i], noisedB[i]) | |
|
487 | title = "Channel %d: %4.2fdB" %(dataOut.channelList[i]+1, noisedB[i]) | |
|
488 | 488 | axes = self.axesList[i*self.__nsubplots] |
|
489 | 489 | axes.pcolor(x, y, zdB[i,:,:], |
|
490 | 490 | xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax, zmin=zmin, zmax=zmax, |
General Comments 0
You need to be logged in to leave comments.
Login now