How do I write to a .txt file?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I need to write to a .txt file.
Thank you for your help.
0 Commenti
Risposte (2)
Walter Roberson
il 25 Gen 2014
fid = fopen('YourFile.txt', 'wt');
fprintf(fid, 'Jake said: %f\n', sqrt(1:10));
fclose(fid);
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!