##// END OF EJS Templates
Test codificacion
Miguel Valdez -
r309:e432e635f5a2
parent child
Show More
@@ -670,20 +670,17 class Decoder(Operation):
670 self.__isConfig = True
670 self.__isConfig = True
671
671
672 if mode == 0:
672 if mode == 0:
673 ndatadec, datadec = self.convolutionInFreq(dataOut.data)
673 datadec = self.convolutionInFreq(dataOut.data)
674
674
675 if mode == 1:
675 if mode == 1:
676 print "This function is not implemented"
676 datadec = self.convolutionInTime(dataOut.data)
677 # ndatadec, datadec = self.convolutionInTime(dataOut.data)
678
677
679 if mode == 2:
678 if mode == 2:
680 ndatadec, datadec = self.convolutionInFreqOpt(dataOut.data)
679 datadec = self.convolutionInFreqOpt(dataOut.data)
681
682
683
680
684 dataOut.data = datadec
681 dataOut.data = datadec
685
682
686 dataOut.heightList = dataOut.heightList[0:ndatadec]
683 dataOut.heightList = dataOut.heightList[0:self.ndatadec]
687
684
688 dataOut.flagDecodeData = True #asumo q la data no esta decodificada
685 dataOut.flagDecodeData = True #asumo q la data no esta decodificada
689
686
General Comments 0
You need to be logged in to leave comments. Login now