Array of 1 and 0 to decimal
7 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
John D'Errico
2016 年 4 月 19 日
編集済み: John D'Errico
2016 年 4 月 19 日
B = bin2dec(char(A + '0'))
B =
147
15
170
0 件のコメント
その他の回答 (1 件)
Azzi Abdelmalek
2016 年 4 月 19 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!