Add lines (data) to a fopen file without overwriting the previous data

6 次查看(过去 30 天)
Hi, I would like to know please how to add data to an fopen file without overwrting the previous data I am using NS = fopen([‘Valu_Var’ num2str(realiz)’.txt’],’w+’);

采纳的回答

Stephen23
Stephen23 2020-6-29
编辑:Stephen23 2020-6-29
Try the append option:
NS = fopen(... ,'a+');
% ^ try this
  2 个评论
Eliane Youssef
Eliane Youssef 2020-6-29
I have another issue that seems to exist. I have a matrix where I am also saving my values and when adding the new lines (lines: y+(tt/0.2)+1), it replaces the old lines (lines: y) by zeros and writes the new lines afterwards.
I am using:
for realiz = 1:...
NS = fopen(['Valu_Var' num2str(realiz) '.txt'],'a+');
for y = 1:...
y;
Var_NS(y+(tt/0.2)+1,realiz)= EvalRandomField(...);
fprintf(NS,'Var(');
fprintf(NS,'%d',y+(tt/0.2)+1); ...
fprintf(NS,'%f\n',Var_NS(y+(tt/0.2)+1,realiz));
end
fclose(NS);
end
save('Var_NS','Var_NS','-v7.3')

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Low-Level File I/O 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by