How do I write to a .txt file?
이전 댓글 표시
I need to write to a .txt file.
Thank you for your help.
답변 (2개)
Walter Roberson
2014년 1월 25일
fid = fopen('YourFile.txt', 'wt');
fprintf(fid, 'Jake said: %f\n', sqrt(1:10));
fclose(fid);
G PRAKASH
2014년 1월 25일
0 개 추천
use dlmwrite command
I=magic(10); dlmwrite('file.txt',I)
카테고리
도움말 센터 및 File Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!