@@ -596,7 +596,7 class Decoder(Operation): | |||||
596 |
|
596 | |||
597 | self.__nChannels, self.__nHeis = shape |
|
597 | self.__nChannels, self.__nHeis = shape | |
598 |
|
598 | |||
599 |
__codeBuffer = numpy.zeros((self.nCode, self.__nHeis), dtype=numpy. |
|
599 | __codeBuffer = numpy.zeros((self.nCode, self.__nHeis), dtype=numpy.complex) | |
600 |
|
600 | |||
601 | __codeBuffer[:,0:self.nBaud] = self.code |
|
601 | __codeBuffer[:,0:self.nBaud] = self.code | |
602 |
|
602 | |||
@@ -1220,6 +1220,10 class IncohInt(Operation): | |||||
1220 |
|
1220 | |||
1221 | def run(self, dataOut, n=None, timeInterval=None, overlapping=False): |
|
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 | if not self.__isConfig: |
|
1227 | if not self.__isConfig: | |
1224 | self.setup(n, timeInterval, overlapping) |
|
1228 | self.setup(n, timeInterval, overlapping) | |
1225 | self.__isConfig = True |
|
1229 | self.__isConfig = True |
General Comments 0
You need to be logged in to leave comments.
Login now