convert binary vector value into decimal
显示 更早的评论
i have
a= [0 0 1 0 1 0 1 1]
i want to convert it, into decimal value 43
回答(3 个)
Mischa Kim
2014-2-26
Raza, use
bin2dec(num2str(a))
Azzi Abdelmalek
2014-2-26
编辑:Azzi Abdelmalek
2014-2-26
a= [0 0 1 0 1 0 1 1];
b=bin2dec(sprintf('%d',a))
Andrei Bobrov
2014-2-26
polyval(a,2)
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!