How to export script to text file ?
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Arif
el 16 de Mzo. de 2024
Comentada: Arif
el 16 de Mzo. de 2024
hello please help me to export my code into .txt extension. Is it possible ?
i already tried this code, but it failed
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 16 de Mzo. de 2024
export() does not support writing data into files.
a = "good";
b = "morning";
c = "babynumber";
d = 1:10;
%Simplified/vectorized method
str = a + b + c + string(d.')
%write the variable into a txt file
%change the file name as per your liking
writematrix(str, 'Filename.txt')
%checking the contents of the file
type('Filename.txt')
Más respuestas (0)
Ver también
Categorías
Más información sobre Text 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!