From a179b84eeaa7253f8015e393795fb5897b10b5c7 2012-12-22 19:12:44 From: Miguel Valdez Date: 2012-12-22 19:12:44 Subject: [PATCH] Test codificacion --- 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')