How do I write to a .txt file?
5 ビュー (過去 30 日間)
古いコメントを表示
I need to write to a .txt file.
Thank you for your help.
0 件のコメント
回答 (2 件)
Walter Roberson
2014 年 1 月 25 日
fid = fopen('YourFile.txt', 'wt');
fprintf(fid, 'Jake said: %f\n', sqrt(1:10));
fclose(fid);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!