How do I write to a .txt file?
Afficher commentaires plus anciens
I need to write to a .txt file.
Thank you for your help.
Réponses (2)
Walter Roberson
le 25 Jan 2014
fid = fopen('YourFile.txt', 'wt');
fprintf(fid, 'Jake said: %f\n', sqrt(1:10));
fclose(fid);
G PRAKASH
le 25 Jan 2014
0 votes
use dlmwrite command
I=magic(10); dlmwrite('file.txt',I)
Catégories
En savoir plus sur Text Files dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!