How do I write to a .txt file?

답변 (2개)

Walter Roberson
Walter Roberson 2014년 1월 25일

1 개 추천

fid = fopen('YourFile.txt', 'wt');
fprintf(fid, 'Jake said: %f\n', sqrt(1:10));
fclose(fid);
G PRAKASH
G PRAKASH 2014년 1월 25일

0 개 추천

use dlmwrite command
I=magic(10); dlmwrite('file.txt',I)

카테고리

질문:

2014년 1월 25일

답변:

2014년 1월 25일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by