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