How to convert char string to bit string
조회 수: 17 (최근 30일)
이전 댓글 표시
Hi,
I am trying to solve a problem which might look like quite easy to solve, hopefully. I have a structure with 5 cells. Each cell contains a string of characters. I would like to concatenate all the strings into one string. I have used strjoin function but the result is following: "1100100 1110011 1100100 1100001 1100100". There are gaps between these small strings. Next step I need to do is to convert the entire string into bit string. Any ideas what I do wrong?
best, Marcin
댓글 수: 0
답변 (3개)
Massimo Zanetti
2016년 10월 11일
str='100100 1110011 1100100 1100001 1100100'
str=regexprep(str,' ','')
result = str-'0'
댓글 수: 0
Walter Roberson
2016년 10월 11일
편집: Walter Roberson
2016년 10월 11일
onestring = strjoin(TheCellArrayOfStrings, '');
bitstring = reshape(dec2bin(onestring, 8).', 1, []);
You might want to subtract '0' from the result, if what you want is binary rather than a string of text.
댓글 수: 2
Jos (10584)
2016년 10월 11일
what is wrong with simple concatenation
onestring = cat(1,TheCellArrayOfStrings{:})
Walter Roberson
2016년 10월 11일
편집: Walter Roberson
2016년 10월 11일
Each cell contains a string of characters
To that point we had not been given that the characters are restricted to '0' and '1'.
People asking here about converting strings of characters to bitstrings are typically working with steganography (or watermarking) and typically have arbitrary text to convert into bit format.
bikekowal Marcin Kowalski
2016년 10월 11일
편집: per isakson
2016년 10월 11일
댓글 수: 1
Walter Roberson
2016년 10월 11일
If you have a character vector S (not a cell array, just a single string), then you can convert the type of data but not its value by using uint16(S) . For example,
>> uint16('101')
ans =
1×3 uint16 row vector
49 48 49
You need to use uint16() for this purpose rather than uint8(), because characters in MATLAB are 16 bits, so converting to 8 bits would be a change in content.
You might have expected the integers 1 0 1 as the output, but the characters '0' and '1' are not represented by the integers 0 and 1: they are represented by the integers 48 and 49. See https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/ASCII-Table-wide.svg/2000px-ASCII-Table-wide.svg.png . Converting '0' and '1' to 0 and 1 requires a change in content.
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!