diff --git a/schainpy/model/jroprocessing.py b/schainpy/model/jroprocessing.py index 618efb1..c66e1f9 100644 --- a/schainpy/model/jroprocessing.py +++ b/schainpy/model/jroprocessing.py @@ -649,10 +649,11 @@ class Decoder(Operation): def convolutionInTime(self, data): ini = time.time() - print self.datadecTime.shape, data.shape, code.shape code = self.code[self.__profIndex].reshape(1,-1) + print self.datadecTime.shape, data.shape, code.shape + for i in range(self.__nChannels): self.datadecTime[i,:] = numpy.correlate(data[i,:], code, mode='valid')