Writing text file

13 Ansichten (letzte 30 Tage)
Andy
Andy am 13 Jan. 2012
If i have a variable, say time=1000, and i want to write this into a txt file, how do i do that?
this is what i have tried:
fid = fopen('exp.txt', 'w');
fprintf(fid, 'time');
fclose(fid);
thanks

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 13 Jan. 2012
fid = fopen('exp.txt', 'w');
fprintf(fid, '%g\n', time);
fclose(fid);
  2 Kommentare
Andy
Andy am 16 Jan. 2012
hi, thanks for the response, but i tried it, it doesnt save anything.
Walter Roberson
Walter Roberson am 16 Jan. 2012
Works fine for me.
>> time = 1000
time =
1000
>> fid = fopen('exp.txt', 'w');
fprintf(fid, '%g\n', time);
fclose(fid);
>> !cat exp.txt
1000

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

sunil anandatheertha
sunil anandatheertha am 17 Jan. 2012
ahhhhhhh, i use the dlmwrite('D:\rrr.txt','delimiter','\t') instead.
Whichever works for the moment !! ;)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by