如何用matlab读取数据并按指定格式输出?
1个回答
展开全部
对于字符串来说,使用sscanf来按格式读,使用sprintf来按格式重新写,
str='123456789';
data=sscanf(str, '%3d');
newstr=sprintf('%d ',data);%newstr='123 456 789'
对于字符串来说,使用fscanf来按格式读,使用fprintf来按格式重新写,
fid=fopen('test.txt'); %test.txt里面是123456789
data=fscanf(fid, '%3d');
newfid=fopen('new.txt','w');
fprintf(newfid,'%d ',data); %new.txt里面是123 456 789
fclose(fid);
fclose(newfid);
str='123456789';
data=sscanf(str, '%3d');
newstr=sprintf('%d ',data);%newstr='123 456 789'
对于字符串来说,使用fscanf来按格式读,使用fprintf来按格式重新写,
fid=fopen('test.txt'); %test.txt里面是123456789
data=fscanf(fid, '%3d');
newfid=fopen('new.txt','w');
fprintf(newfid,'%d ',data); %new.txt里面是123 456 789
fclose(fid);
fclose(newfid);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询