fread file with 4 bytes of prepended array size

1 Ansicht (letzte 30 Tage)
A
A am 7 Feb. 2012
Bearbeitet: Matthew Phillips am 3 Okt. 2013
How do I read in a binary file(fread function) with data that has 4 bytes of data that specify the array size for each group of data. For example if I load the file using fread it would be 100x20 matrix but the first 4 bytes specify the area size(16 bytes). The file should read as 100x16. I'm currently using a for loop to read the file as start at byte 5, read 16, then start at byte 20, read 16, etc. Seems like their should be one line of code that says skip first 4 bytes of each data set. Thank you.
  1 Kommentar
A
A am 7 Feb. 2012
This works, but is it possible to optimize this code:
fseek(fid,4,'bof');
A =(fread(fid,[4,4],'*uint8',0,'n')).';
p=4;
for i= 1:100
p=p+20;
fseek(fid,p,'bof');
temp = (fread(fid,[4,4],'*uint8',0,'n')).';
A = cat(3,temp, A);
end

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sean de Wolski
Sean de Wolski am 7 Feb. 2012
Yes, fseek will be your friend.
  2 Kommentare
A
A am 7 Feb. 2012
yea, i'm using fseek within a for loop
Sean de Wolski
Sean de Wolski am 7 Feb. 2012
preallocating A to its final size would be good. Why not just read all of the file in at once and reshape() after?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by