How to write to a text file without overwriting existing file content in matlab
조회 수: 9 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2015년 6월 29일
a=rand(4)
b=[1 2 3;4 5 6]
dlmwrite('file.txt',a)
dlmwrite('file.txt',b,'-append')
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Environment and Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!