Re: [Discuss-gnuradio] bug in digital.sd_psk_2_0x1
Can you submit a pull request please? Cheers, M On 11/30/2016 02:08 PM, Eugene Grayver wrote: > Hello, > > I found a bug in digital.sd_psk_2_0x1.There should not be brackets > around x_re = x.real. > > Regards, > Eugene > > > def sd_psk_2_0x1(x, E
[Discuss-gnuradio] bug in digital.sd_psk_2_0x1
Hello, I found a bug in digital.sd_psk_2_0x1.There should not be brackets around x_re = x.real. Regards, Eugene def sd_psk_2_0x1(x, Es=1): ''' 1 | 0 ''' -x_re = [x.real,] +x_re =[x.real dist = Es*numpy.sqrt(2) return -dis