BER/SNR plots for discrete BPSK over AWGN
[4yp.git] / decodeNoisyBPSK.m
1 function x = decodeNoisyBPSK(noisyData)
2   x = (noisyData > 0) - (noisyData <= 0);
3 end