70ef8f877aee66079d599fb8253e299059179fd7
[4yp.git] / decodeNoisyBPSK.m
1 function x = decodeNoisyBPSK(noisyData)
2   x = (noisyData > 0) - (noisyData <= 0);
3 end