필터 지우기
필터 지우기

how to convert a string to binary and then from the binary back to string

조회 수: 101 (최근 30일)
how to convert a string to binary and then from the binary back to string
s = 'Mary had a little lamb';
binary = dec2bin(s);
str = bin2dec(binary)
but str i obtained is not string... how to get the string back... also, when i do above i get binary as char variable...
binary =
1001101
1100001
1110010
1111001
0100000
1101000
1100001
1100100
0100000
is it possible, to get is as a vector, with double datatype and i should be able to get that back as string...
binary =
1 1 0 1 0 0 0 0 1 0

채택된 답변

Walter Roberson
Walter Roberson 2016년 10월 6일
binary = reshape(dec2bin(s, 8).'-'0',1,[])
str = char(bin2dec(reshape(char(binary+'0'), 8,[]).'))
  댓글 수: 2
Awais Saeed
Awais Saeed 2019년 5월 5일
@Walter Roberson how these two lines are working? I only understand dec2bin and bin2dec.
marie lasz
marie lasz 2021년 1월 5일
@Awais Saeed
s = 'Awais Saeed';
binary = reshape(dec2bin(s, 8).'-'0',1,[]);
display(binary);
str = char(bin2dec(reshape(char(binary+'0'), 8,[]).'));
display(str);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by