How to write to a text file without overwriting existing file content in matlab
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Moe
el 29 de Jun. de 2015
Respondida: Azzi Abdelmalek
el 29 de Jun. de 2015
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 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 29 de Jun. de 2015
a=rand(4)
b=[1 2 3;4 5 6]
dlmwrite('file.txt',a)
dlmwrite('file.txt',b,'-append')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!