フィルターのクリア

Using Export_fig to save a plot as it's original file name

1 回表示 (過去 30 日間)
Benjamin
Benjamin 2012 年 6 月 18 日
So I'm trying to automate the saving of my plots with export_fig, but in my script i have declared a global variable as the file name (ex. plot title).
my code for the global variable looks like this:
% creates the global variable
global file_to_get;
% used to select the file path needed for uiimport
file_to_get = uigetfile({'*.csv*'}, 'Select the CSV File', 'file path');
Is there a way to use export_fig to save my plots as the file_to_get name? and then is there a way to add something to that title, for example file_to_get plot.jpg.
Thanks

採用された回答

Walter Roberson
Walter Roberson 2012 年 6 月 18 日
outfilename = regexprep(file_to_get, '.csv', ' plot.jpg');
export_fig(outfilename, ....)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by