Using export_fig for custom filenames and specific file folders.

3 views (last 30 days)
I'm trying to set the file name for export_fig as a variable. For instance, I could ask a user what they wanted to save a figure as and then save the figure with their answer. How would I do this?
Additionally, I want to save figures to a specific folder on my computer. What is correct syntax for this?

Answers (1)

Walter Roberson
Walter Roberson on 14 Oct 2017
[filename, pathname] = uiputfile( {'*.tif', '*.png', '*.pdf'}, 'Select an output file');
if isnumeric(filename) %watch out for user cancel
disp('Canceled!')
else
fullname = fullfile(pathname, filename);
[~, ~, ext] = fileparts(fullname);
opts = {'-a1', '-png'};
if strcmp(ext, '.pdf'); opts{end+1} = '-pdf'; end
export_fig(fullname, opts{:});
end

Categories

Find more on File Operations 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!