How to write to a text file without overwriting existing file content in matlab

9 Ansichten (letzte 30 Tage)
Matrix a in each run will be created new values and I want to save output values in each run to the same file without overwriting existing file.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 29 Jun. 2015
a=rand(4)
b=[1 2 3;4 5 6]
dlmwrite('file.txt',a)
dlmwrite('file.txt',b,'-append')

Weitere Antworten (0)

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by