博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
read from and write to file
阅读量:5327 次
发布时间:2019-06-14

本文共 763 字,大约阅读时间需要 2 分钟。

使用两种方法读数据

clc;clearvars;fid=fopen('data.txt');tline=fgetl(fid);nline=1;%表示行数while ischar(tline)    %do some work    %first method:use strfind(tline,' ');'seperator'    %data type:12 30 8 23 9 40    %          30 12 11 3 6 7    %%-------------------------------%     index=strfind(tline,' ');%     newindex=[0 index length(tline)+1];%在前面和后面多增加一个seperator%     for i=1:length(newindex)-1%         str=tline(newindex(i)+1:newindex(i+1)-1);%         data{nline,i}=str;%     end%     nline=nline+1;%     tline=fgetl(fid);%获取下一行    %%---------------------------------    %second method:use textscan(tline,'%s'),以cell的形式扫入到字符串     str_c=textscan(tline,'%s');    data{nline}=str_c;    nline=nline+1;    tline=fgetl(fid);end

转载于:https://www.cnblogs.com/raby/p/5886686.html

你可能感兴趣的文章
CodeForces 520C 水构造
查看>>
SVN配置–服务器端(linux)
查看>>
document.body、document.documentElement和window获取视窗大小的差别
查看>>
hdu3535 AreYouBusy
查看>>
SDL2源码分析1:初始化(SDL_Init())
查看>>
SignalR Troubleshooting
查看>>
Windows Phone 7 异步编程模型
查看>>
oracle10g连接自动断开,报ORA-03135错误
查看>>
angular : direative :comunication 指令之间的通讯
查看>>
Linux _ Day8 Shell编程之字符截取命令
查看>>
jquery鼠标右键事件
查看>>
检测目标程序ELF bit是32还是64
查看>>
怎样建立一个bower私库
查看>>
struts2基本介绍
查看>>
Duanxx的STM32学习:NVIC操作
查看>>
假设拦截WebView的错误和OS升级到4.4后链接不能点击的问题
查看>>
c++中sort()及qsort()的使用方法总结
查看>>
Javascript > Eclipse > 自动代码规范化
查看>>
站立会议6
查看>>
我的笔记
查看>>