如何用matlab读取数据并按指定格式输出?
发布网友
发布时间:2022-05-30 17:21
我来回答
共1个回答
热心网友
时间:2023-10-21 18:26
对于字符串来说,使用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);