Continue reading file after inner loop completes?
5 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(1 个)
Benjamin Thompson
2022-2-14
If feof returns true you are at the end of the file. You cannot read any more data.
2 个评论
Benjamin Thompson
2022-2-15
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!