Borrar filtros
Borrar filtros

Continue reading file after inner loop completes?

1 visualización (últimos 30 días)
Lev Mihailov
Lev Mihailov el 14 de Feb. de 2022
Comentada: Benjamin Thompson el 15 de Feb. de 2022
Now I'm reading the file in the matlab environment, but there was a problem, I can't force the file to be read after the loop is completed. The file consists of four parts, my code reads the first part without problems, all sizes are written in the first part (the number of bytes to read), there is no such thing in other parts (but I know them)
fileID = fopen(fileName);
finfo=dir(fileName);
filesize=finfo.bytes;
reccount=uint64(0);
datcount=uint64(0);
datcount=1;
while (~feof(fileID)) && (ftell(fileID)<filesize)
reccount=reccount+1;
blocksize=fread(fileID,[1,1],'uint32');
lastblocksize=fread(fileID,[1,1],'uint32');
block=fread(fileID,[1,1],'uint32');
datasize=fread(fileID,[1,1],'uint32');
bitmask=fread(fileID,[1,1],'uint32');
DataMatrix1=fread(fileID,[datasize,1],'uint8');
if (block==0)&&(bitand(bitmask,2))&&(bitand(bitmask,8)) % this loop reads the first 220 bytes of each block
MyData(:,datcount)=DataMatrix;
datcount=datcount+1;
end
end
Now the file reads the first 20 bytes, and then makes a matrix out of 200 bytes. The structure of each group of blocks looks like this: blok(220,400,600,1000). How to continue reading bytes knowing their size (matrices should be obtained (with sizes of 400xN, 600xN values)?
I will be glad for any help

Respuestas (1)

Benjamin Thompson
Benjamin Thompson el 14 de Feb. de 2022
If feof returns true you are at the end of the file. You cannot read any more data.
  2 comentarios
Lev Mihailov
Lev Mihailov el 15 de Feb. de 2022
I just don't understand the logic of further reading the file at all, i.e. recount = 400 (these are all values of blocks (220,420,1020,2020,2240 and further), datcount = 100 (this is the length of all blocks). That's right, but how do I read another 400 bytes after I read the DataMatrix(MyData)?
Benjamin Thompson
Benjamin Thompson el 15 de Feb. de 2022
You will probably need to post the file, or a sample of it, with a complete description of how you are trying to read it.

Iniciar sesión para comentar.

Categorías

Más información sobre Low-Level File I/O en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by