##// END OF EJS Templates
Bug: salta si el numero de integraciones incoherentes es igual a 1
Miguel Valdez -
r325:aaba17b6fcfb
parent child
Show More
@@ -596,7 +596,7 class Decoder(Operation):
596 596
597 597 self.__nChannels, self.__nHeis = shape
598 598
599 __codeBuffer = numpy.zeros((self.nCode, self.__nHeis), dtype=numpy.float32)
599 __codeBuffer = numpy.zeros((self.nCode, self.__nHeis), dtype=numpy.complex)
600 600
601 601 __codeBuffer[:,0:self.nBaud] = self.code
602 602
@@ -1220,6 +1220,10 class IncohInt(Operation):
1220 1220
1221 1221 def run(self, dataOut, n=None, timeInterval=None, overlapping=False):
1222 1222
1223 if n==1:
1224 dataOut.flagNoData = False
1225 return
1226
1223 1227 if not self.__isConfig:
1224 1228 self.setup(n, timeInterval, overlapping)
1225 1229 self.__isConfig = True
General Comments 0
You need to be logged in to leave comments. Login now