Converting 27 bit signed binary to decimal

조회 수: 26 (최근 30일)
Karl Haebler
Karl Haebler 2018년 1월 5일
댓글: Walter Roberson 2018년 1월 5일
I have a textfile with 1024 lines, each line containing a 27 bit signed binary number. I need to convert the data in this textfile to decimal. I know how to convert signed binary of length 16, but I'm not sure how to convert 27 bit since the function uint16 does not apply to 27 bit numbers. Does anyone know how to convert 27 bit signed binary numbers into decimal? Thank you very much
  댓글 수: 2
James Tursa
James Tursa 2018년 1월 5일
What exactly is in the text file? Can you give a short example? Is it character data with '0' and '1', or something else?
Karl Haebler
Karl Haebler 2018년 1월 5일
Hey James, I've attached the textfile here

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

답변 (1개)

Walter Roberson
Walter Roberson 2018년 1월 5일
Your input file does not have 27 bit signed binary numbers: it has 32 bit signed binary numbers. 22 bits of the range are significant, but because they are stored as 32 bit you can read them as 32 bit.
fid = fopen('output_real.txt', 'rt');
datacell = textscan(fid, '%s');
fclose(fid);
values = typecast(uint32(bin2dec(char(datacell{1}))),'int32');
  댓글 수: 2
Karl Haebler
Karl Haebler 2018년 1월 5일
Hey Walter, You are right, I actually uploaded the text file after I adjusted it so that I could use uint32. So basically originally the textfile did have 27 bit signed numbers, then I recreated it to have 32 so I could use the method you showed. I'm still curious though, do you know how you would do the conversion if it did in fact just have 27 bit numbers? Thanks!
Walter Roberson
Walter Roberson 2018년 1월 5일
fid = fopen('output_really_real_not_that_fake_32bit_stuff.txt', 'rt');
datacell = textscan(fid, '%s');
fclose(fid);
temp = char(datacell{1}));
temp = [repmat(temp(:,1),1,5), temp]; %sign extend
values = typecast(uint32(bin2dec(temp)), 'int32');

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

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by