convert binary vector value into decimal
Show older comments
i have
a= [0 0 1 0 1 0 1 1]
i want to convert it, into decimal value 43
Answers (3)
Mischa Kim
on 26 Feb 2014
Raza, use
bin2dec(num2str(a))
Azzi Abdelmalek
on 26 Feb 2014
Edited: Azzi Abdelmalek
on 26 Feb 2014
a= [0 0 1 0 1 0 1 1];
b=bin2dec(sprintf('%d',a))
Andrei Bobrov
on 26 Feb 2014
polyval(a,2)
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!