필터 지우기
필터 지우기

ASCII to Binary Bit Stream

조회 수: 9 (최근 30일)
Jared
Jared 2012년 10월 23일
I am trying to convert an ASCII test string to a binary bit stream for output to an external device down the line. As a test, I create a text string:
ascii_msg='Test.';
As expected, a 5x7 char array is created. I'm not sure where to go from here. I use:
bin_msg=cellstr(dec2bin(ascii_msg));
And end up with a 12x1 cell array. I would like to get this in a 35x1 cell array, with each cell containing 1 bit. What is the best way to go about this?

채택된 답변

Walter Roberson
Walter Roberson 2012년 10월 23일
bin_msg = num2cell(reshape( dec2bin(ascii_msg).', [], 1));
Are you sure you need one cell per bit, and just having one bit per array element is not good enough? To get one bit per array element, leave off the num2cell() layer of the above.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by