there are two 8 bit binary values in a single variable...how can i concate these two values???
이전 댓글 표시
a='asd';
b=double(a);
c=dec2bin(b,8);
d=length(c);
i need to get d as 24 how can i get?
채택된 답변
추가 답변 (2개)
Guillaume
2014년 12월 17일
Andrei Bobrov
2014년 12월 17일
편집: Andrei Bobrov
2014년 12월 17일
on comment by Hemalatha
a='asd';
b=double(a);
c=dec2bin(b,8).';
out = c(:)';
카테고리
도움말 센터 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!