Saving a file in a folder
Mostrar comentarios más antiguos
Hi;
How can I save a file in a folder with a .FIG and .PNG extension in Matlab?
Actually I want to save the file in a folder by writing a Matlab code.
Regards,
Respuestas (2)
MD RAQUIBUZZAMAN
el 20 de Feb. de 2019
0 votos
f=plot(x,y);
saveas(f,'name.fig')
or you can directly use
savefig('name.fig')
1 comentario
SEVAL DONERTAS
el 20 de Feb. de 2019
MD RAQUIBUZZAMAN
el 20 de Feb. de 2019
0 votos
when you open the saved file, you need to use 'openfig' or open name.fig. It will load all the text and the legends.
1 comentario
SEVAL DONERTAS
el 22 de Feb. de 2019
Categorías
Más información sobre Printing and Saving en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!