How can I read a binary file with mixed formats in Matlab?

11 views (last 30 days)
I have a binary file with the following formats:
Column 1: char 32
Column 2: float 4
Column 3: integer 4
and I would like to read column by column in Matlab. Each column has about 700 rows of data.
I tried fid = fopen(filename,'rb');
and then used A = fread(fid,Inf,'char') to read the first column, but I've only got numeric data with many more rows than the original text. No success with the following columns either.
Thank you very much for your help.
Claude
  4 Comments
Walter Roberson
Walter Roberson on 13 Apr 2014
Okay, in that case the counts that Duane used should be fine.
dpb
dpb on 13 Apr 2014
AFAIK this or reading each field sequentially via fread is the only choice in Matlab, Walter? C could build a struct record but not implemented in Matlab.

Sign in to comment.

Answers (3)

dpb
dpb on 13 Apr 2014
Edited: dpb on 13 Apr 2014
m = memmapfile('file.dat', 'Format', {'uint8, [1 32] 'chdata'; ...
'single' [1 1] 'sdata'; ...
'int32', [1 1] 'idata'});
chdata, sdata, and idata will be in named fields of the structure m.
You'll need to cast the uint8 data for the character data to character via char
doc memmapfile % for more details, of course

Image Analyst
Image Analyst on 13 Apr 2014
Very very easy:
t = readtable(fullFileName);
readtable can handle mixed data types on the same line. Requires R2013b and later.
  5 Comments
dpb
dpb on 13 Apr 2014
Edited: dpb on 13 Apr 2014
Actually, memmapfile is one of the real boons in the upgrade I've come to realize. It would have been a great aid 10-15 yr ago when was still actively consulting.

Sign in to comment.


Claude C.
Claude C. on 15 Apr 2014
It doesn't accept this format, maybe because of the uint8?
  2 Comments
Walter Roberson
Walter Roberson on 15 Apr 2014
It will have to be 'uint8' instead of the 'uint8 accidentally given in the example.
You will probably want to add a 'Repeat', 700 option after 'Format' option.
dpb
dpb on 15 Apr 2014
Doggone, sorry I missed the closing tick...
I'd think he'd want to map the whole file which will by default unless there are known to be precisely N records which seemed to me the "about 700" denies being either known or constant. If there's something else after these records, then that's another potential "gotcha'!", of course.

Sign in to comment.

Tags

Community Treasure Hunt

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

Start Hunting!