##// END OF EJS Templates
Bug fixed: crossSpectraPlot, noise variable was called as method "noise()"
Miguel Valdez -
r525:315efed252d3
parent child
Show More
@@ -307,7 +307,7 class CrossSpectraPlot(Figure):
307 307 z = dataOut.data_spc[:,:,:]/factor
308 308 # z = numpy.where(numpy.isfinite(z), z, numpy.NAN)
309 309 avg = numpy.abs(numpy.average(z, axis=1))
310 noise = dataOut.noise()/factor
310 noise = dataOut.noise/factor
311 311
312 312 zdB = 10*numpy.log10(z)
313 313 avgdB = 10*numpy.log10(avg)
@@ -1053,7 +1053,7 class Noise(Figure):
1053 1053 x = dataOut.getTimeRange()
1054 1054 y = dataOut.getHeiRange()
1055 1055 factor = dataOut.normFactor
1056 noise = dataOut.noise()/factor
1056 noise = dataOut.noise/factor
1057 1057 noisedB = 10*numpy.log10(noise)
1058 1058
1059 1059 #thisDatetime = dataOut.datatime
General Comments 0
You need to be logged in to leave comments. Login now