binary matrix to decimal number
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abduellah Elbakoush
am 21 Jan. 2022
Kommentiert: Abduellah Elbakoush
am 21 Jan. 2022
I have binary matrix the dimensions of matrix (1*8) like this
1 0 1 1 0 0 1 0
I want to put that matrix into another matrix the dimensions of new matrix is ( 1*1) like this
10110010
then I want to conver into decimel number like this
178
Can you help me to do this problem
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Simon Chan
am 21 Jan. 2022
Try this:
A = logical([1 0 1 1 0 0 1 0]);
B = bin2dec(num2str(A))
1 Kommentar
yanqi liu
am 21 Jan. 2022
a = [1 0 1 1 0 0 1 0 ];
b = strrep(num2str(a), ' ', '')
c = bin2dec(b)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!