write in a specific line of text file
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi all,
I'm writing a code and I would save the result in a specific line of text file. for example, the code should write the result on .txt file from line 6 or 7 but I don't know how can I do it. I've used
fid = fopen('z.txt', 'w');
fprintf(fid, '%d\r\n',MyResult);
fclose(fid)
But it can just write in a new line no each line as I want. Could you please help me
Hamed
4 Commenti
Rik
il 24 Gen 2018
If you want to append lines, read the doc. If you want to do something else, you'll have to explain it more, preferably with some examples, because right now, I don't know if I understand you.
Risposte (1)
Rik
il 24 Gen 2018
Use the append switch in fopen, fprinft an empty line, and fprintf the matrix with the FormatSpec of your choosing.
0 Commenti
Vedere anche
Categorie
Scopri di più su Low-Level File I/O 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!