##// END OF EJS Templates
Bug fixed in jroIO_usrp.py: Code should be a numpy.array
Miguel Valdez -
r686:70c29a3edf06
parent child
Show More
@@ -251,7 +251,7 class USRPReader(ProcessingUnit):
251 251
252 252 nCode = 1
253 253 nBaud = 1
254 code = numpy.zeros((nCode, nBaud))
254 code = numpy.ones((nCode, nBaud), dtype=numpy.int)
255 255
256 256 if codeType:
257 257 nCode = this_metadata_file['nCode'].value
General Comments 0
You need to be logged in to leave comments. Login now