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

7 views (last 30 days)
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.

Accepted Answer

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

More Answers (0)

Categories

Find more on Cell Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!