defining string variable in fprintf function
49 次查看(过去 30 天)
显示 更早的评论
result_1=10.5;
result_2=9.9;
string1='data1';
string2='data2';
fprintf(fid','string1 %.1f string2 %.1f\n', result_1, result_2);
In the above example, string1 and string2 are written in text file along with theirs' results. How can I define string1 and string2 as variables (data1, data2) in fprintf function?
0 个评论
采纳的回答
Star Strider
2021-7-12
Try this —
fid = 1; % Write To Command Window
result_1=10.5;
result_2=9.9;
string1='data1';
string2='data2';
fprintf(fid,'%s %.1f %s %.1f\n', string1, result_1, string2, result_2);
.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!