bpsk
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
sir how to convert 0 to -1 and 1 to +1
1 Commento
Risposta accettata
Oleg Komarov
il 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 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su BPSK in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!