其他分享
首页 > 其他分享> > matlab检测文件最后一行

matlab检测文件最后一行

作者:互联网

status = feof(fileID)

从这个 badpoem.txt 文件中一次读取一行,一直到文件的末尾。

 

 

使用 fopen 打开文件。此函数将指定一个唯一的文件 ID,用于读取和写入文件。

fid = fopen('badpoem.txt');

一次读取并显示一行,一直到文件的末尾。

while ~feof(fid)
    tline = fgetl(fid);
    disp(tline)
end
Oranges and lemons,
Pineapples and tea.
Orangutans and monkeys,
Dragonflys or fleas.

关闭文件。

fclose(fid);

标签:文件,txt,读取,检测,一行,matlab,fid,fopen,feof
来源: https://www.cnblogs.com/yibeimingyue/p/16327514.html