필터 지우기
필터 지우기

Using export_fig for custom filenames and specific file folders.

조회 수: 1 (최근 30일)
awezmm
awezmm 2017년 10월 14일
답변: Walter Roberson 2017년 10월 14일
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?

답변 (1개)

Walter Roberson
Walter Roberson 2017년 10월 14일
[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

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by