Array of 1 and 0 to decimal
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to convert array with 1's and 0's (array A) to decimal (array B)?
A = [1 0 0 1 0 0 1 1; 0 0 0 0 1 1 1 1; 1 0 1 0 1 0 1 0 ];
B = [147;15;170];
0 Commenti
Risposta accettata
John D'Errico
il 19 Apr 2016
Modificato: John D'Errico
il 19 Apr 2016
B = bin2dec(char(A + '0'))
B =
147
15
170
0 Commenti
Più risposte (1)
Azzi Abdelmalek
il 19 Apr 2016
A = [1 0 0 1 0 0 1 1; 0 0 0 0 1 1 1 1; 1 0 1 0 1 0 1 0 ];
out=A*2.^(size(A,2)-1:-1:0)'
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!