Matrix of bits into ASCII string

6 ビュー (過去 30 日間)
Jan
Jan 2014 年 4 月 11 日
回答済み: Hacene AYADI 2018 年 3 月 15 日
Hi. I have a problem. I have matrix of bits ([0 1 1 1 0 1 1 1 ...], every column is 1 bit) where every 8 bits are one char. I need to convert matrix into ASCII string. How can i do that?
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 4 月 11 日
What is the result if
a=[ 1 0 0 1 0 1 0 1 1 0 0 0 1 1 1 1]
Jan
Jan 2014 年 4 月 11 日
I used
dec2bin(word,8)
so the first bit of group of eight is always 0. In fact i could use only 7 bits... OK so how can i convert matrix into ASCII string where every 7 bits are one char?

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2014 年 4 月 11 日
char(bin2dec(reshape(char('0' + YourVector),BitsPerCharacter,[]).'))
  1 件のコメント
Jan
Jan 2014 年 4 月 11 日
Thx a lot!

サインインしてコメントする。

その他の回答 (1 件)

Hacene AYADI
Hacene AYADI 2018 年 3 月 15 日
@Walter Roberson plz i have matrix of binary and i want to convert to char my matrix of 64bis and size(2,94) i need help and thx

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by