例えば uigetfile でファイルを選択して fname に 'alpha.csv' が入っているとして
fname = uigetfile; %'alpha.csv'のファイルを選択
[~,name,ext] = fileparts(filename);
%save_name = [name, '.fig']; %拡張子付きで名前を取っておくなら
figure;
savefig(name)
など.
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!