Array of 1 and 0 to decimal
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
John D'Errico
le 19 Avr 2016
Modifié(e) : John D'Errico
le 19 Avr 2016
B = bin2dec(char(A + '0'))
B =
147
15
170
0 commentaires
Plus de réponses (1)
Azzi Abdelmalek
le 19 Avr 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 commentaires
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!