Azzera filtri
Azzera filtri

about write in file

1 visualizzazione (ultimi 30 giorni)
UTA
UTA il 3 Giu 2013
Hi everyone: I have a exist file named as 'data.txt', and I want to write data into the file in every loop; but the update data always overwrite on the previous, how can I avoid this problem and write data in file as the size of n*2; my code as follow: the size of matrix h is n*2;
for i = 1 : 10
fid = fopen('data.txt','w+');
fprintf(fid,'%d\n',h(i,:));
fclose(fid);
end
Thank you so much!

Risposta accettata

Walter Roberson
Walter Roberson il 3 Giu 2013
for i = 1 : 10
fid = fopen('data.txt','at');
fprintf(fid,'%d\n',h(i,:));
fclose(fid);
end

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 3 Giu 2013
fid = fopen('data.txt','w+');
for i = 1 : 10
fprintf(fid,'%d\n',h(i,:));
end
fclose(fid);

Categorie

Scopri di più su Large Files and Big Data in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by