필터 지우기
필터 지우기

Binary data dealing with fread

조회 수: 2 (최근 30일)
Kei Manabe
Kei Manabe 2018년 11월 19일
댓글: Jan 2018년 11월 20일
I have a binary data file. When I look into the file in a Hex editior, I can see a 32 bit Hex value, 'F9 BD FF FF.' When I read it as fread(fid,1,'bit32','ieee-le'), the value is read as -3.448212000000000e+05. I do not understand the calculation. Could you let me know, please?

채택된 답변

Jan
Jan 2018년 11월 20일
I cannot confirm this.
a = uint8(sscanf('F9BDFFFF', '%2X'));
fid = fopen('test.bin', 'w');
fwrite(fid, a, 'uint8');
fclose(fid);
fid = fopen('test.bin');
b = fread(fid,1,'bit32','ieee-le') % -16903
Please post some code, which reproduces your observations.
  댓글 수: 1
Jan
Jan 2018년 11월 20일
Kei Manabe wrote: I have tried your code and got same result. Finally, I have found the code
"y = y*20.4;"
at around the end of the code lol...
Thank you so much for your cooperation!!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by