bpsk
5 views (last 30 days)
Show older comments
sir how to convert 0 to -1 and 1 to +1
Accepted Answer
Oleg Komarov
on 24 Apr 2011
% Example input
A = randi([0 1],10,1);
Cellarray lookup table:
B = {'-1', '+1'};
C = B(A+1).';
Or char array table:
B = ['-1'; '+1'];
C = B(A+1,:)
0 Comments
More Answers (1)
See Also
Categories
Find more on BPSK in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!