Saving a file in a folder
1 view (last 30 days)
Show older comments
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,
0 Comments
Answers (2)
MD RAQUIBUZZAMAN
on 20 Feb 2019
f=plot(x,y);
saveas(f,'name.fig')
or you can directly use
savefig('name.fig')
MD RAQUIBUZZAMAN
on 20 Feb 2019
when you open the saved file, you need to use 'openfig' or open name.fig. It will load all the text and the legends.
See Also
Categories
Find more on Printing and Saving in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!