How to save a txt file in matlab with the specified name I want?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Luccas S.
el 14 de Abr. de 2021
Comentada: Luccas S.
el 14 de Abr. de 2021
Example:
filename = input('Enter the file name: ','s')
A
save(fullfile('directory path','filename.txt'),'A','-ascii')
0 comentarios
Respuesta aceptada
Walter Roberson
el 14 de Abr. de 2021
fullname = fullfile('directory path', [filename '.txt']);
save(fullname, 'A', '-ascii')
Más respuestas (0)
Ver también
Categorías
Más información sobre Workspace Variables and MAT-Files 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!