我有大格式的文本文件(200 Mb),其中包含易于阅读和保存的数据。格式的周期性约为 72 行,我想要一个包含 72 行模板格式的其他文件。有没有办法做到这一点?
理想的方式是
formatstring = fileread(templatefile)
fileToRead = fopen(LargeFile,'r')
while ~feof(fileToRead)
object{i} = textscan(fileToRead,formatstring)
i = i+1
end
模板文件如下所示:
CASE # %16f DATE: %s
AILERON ANGLE STAB ANGLE
%4.2f %4.2f
ALPHA BETA GAMMA
%4.2f %4.2f %4.2f