Azzera filtri
Azzera filtri

Using export_fig for custom filenames and specific file folders.

1 visualizzazione (ultimi 30 giorni)
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?

Risposte (1)

Walter Roberson
Walter Roberson il 14 Ott 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

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by