convert binary vector value into decimal
Mostra commenti meno recenti
i have
a= [0 0 1 0 1 0 1 1]
i want to convert it, into decimal value 43
Risposte (3)
Mischa Kim
il 26 Feb 2014
Raza, use
bin2dec(num2str(a))
Azzi Abdelmalek
il 26 Feb 2014
Modificato: Azzi Abdelmalek
il 26 Feb 2014
a= [0 0 1 0 1 0 1 1];
b=bin2dec(sprintf('%d',a))
Andrei Bobrov
il 26 Feb 2014
polyval(a,2)
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!