在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
文章来源:https://ww2.mathworks.cn/help/matlab/ref/fseek.html?searchHighlight=fseek&s_tid=doc_srchtitle 说明offset 字节数。 当操作成功时,-1。可以使用上述任意输入参数组合。 示例移动到文件中的新位置打开下面的
使用 fid = fopen('badpoem.txt'); ftell(fid) ans = 0 读取前三行,并在每次读取后查询指针在文件中的位置。使用 tline1 = fgetl(fid) % read the first line tline1 = 'Oranges and lemons,' ftell(fid) ans = 20 读取第二行并检查当前位置。 tline2 = fgetl(fid) % read the second line tline2 = 'Pineapples and tea.' ftell(fid) ans = 40 读取第三行并检查当前位置。 tline3 = fgetl(fid) % read the third line tline3 = 'Orangutans and monkeys,' ftell(fid) ans = 64 要读取第 2 行,请将文件中的位置设置为指向第 2 行的开头。使用 fseek(fid,20,'bof');
fgetl(fid)
ans = 'Pineapples and tea.' 关闭文件。 fclose(fid); 输入参数提示
备选方法要移至文件的开头,请调用 frewind(fileID) 此调用等同于 fseek(fileID, 0, 'bof')
扩展功能使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。用法说明和限制:
在 R2006a 之前推出
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论