Writing text file
4 ビュー (過去 30 日間)
古いコメントを表示
If i have a variable, say time=1000, and i want to write this into a txt file, how do i do that?
this is what i have tried:
fid = fopen('exp.txt', 'w');
fprintf(fid, 'time');
fclose(fid);
thanks
0 件のコメント
採用された回答
Walter Roberson
2012 年 1 月 13 日
fid = fopen('exp.txt', 'w');
fprintf(fid, '%g\n', time);
fclose(fid);
2 件のコメント
Walter Roberson
2012 年 1 月 16 日
Works fine for me.
>> time = 1000
time =
1000
>> fid = fopen('exp.txt', 'w');
fprintf(fid, '%g\n', time);
fclose(fid);
>> !cat exp.txt
1000
その他の回答 (1 件)
sunil anandatheertha
2012 年 1 月 17 日
ahhhhhhh, i use the dlmwrite('D:\rrr.txt','delimiter','\t') instead.
Whichever works for the moment !! ;)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で JSON Format についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!