finction datestr and writetable
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
han han
el 14 de Nov. de 2019
Comentada: han han
el 14 de Nov. de 2019
I want to save the file to the folder I created with datestr.
But the path path always shows an error, how can I modify it?
0 comentarios
Respuesta aceptada
Nicolas B.
el 14 de Nov. de 2019
May I ask you to use the "code" function of this website to add your code instead of a picture. It makes it easier for us to copy your code if necessary.
In your code, I see that the filename of your output file is t/a.txt. Then, except if you have a folder named t, it would not work. So my first suggestion would be to get the real path:
writetable(T, fullfile(t, 'a.txt'), 'Delimiter', ' ', 'writevariablenames', false);
Second, the line with fullfile in your code is useless because fullfile is supposed to be used to merge a full filename path. So you can skip it.
Más respuestas (0)
Ver también
Categorías
Más información sobre Read, Write, and Modify Image 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!