如何在Matlab中以特定格式将数据保存到文本文件?

时间:2012-12-12 20:43:49

标签: file matlab text format

我是Matlab的初学者,我需要帮助以这样的格式输出我的X和Y坐标:

X-142232Y77639
X-148878Y63979
X-154215Y49757
X-158196Y35097

这是一列XY字符串。 现在我有了这个:

fileID = fopen('matrix.txt','a+' );
formatSpec = 'x'%6.4f\n';
fprintf(fileID,'%6.4f\n');
fprintf(fileID,'%6.4f\n',x, y);
fclose(fileID);

在formatSpec中我不知道如何添加Y? 谢谢!

1 个答案:

答案 0 :(得分:2)

在格式字符串中添加其他令牌(%6.4f):

formatSpec = 'X%6.4fY%6.4f\n';

然后在调用fprintf

时使用该格式字符串
 fprintf(fileID, formatSpec, x, y);

Documentation here。)