How to save a figure in user defined path in GUI?

1 回表示 (過去 30 日間)
adi kul
adi kul 2016 年 6 月 10 日
コメント済み: adi kul 2016 年 6 月 10 日
Hello All, I my GUI, I take a path from user to save the results as follows:
% --- Executes on button press in pushbutton3.
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%is not a number then input will be empty
input = get(hObject,'String');
%checks to see if input is empty. if so, default input1_editText to zero
if(isempty(input))
h=msgbox('Please select the output folder');
end
guidata(hObject, handles);
S4.selected_dir = uigetdir();
set(handles.edit27, 'String', S4.selected_dir)
set(handles.pushbutton3, 'UserData', S4);
Now in another function the calculation works and figures are generated. Now I want to save these plots in the path given by the user. so I have this code:
saveDirectory = [pwd 'S4.selected_dir\Case_' num2str(ii)];
% check if folder exists, if not, then create
checkExistence = exist(saveDirectory, 'dir');
if ~(checkExistence == 7)
mkdir(saveDirectory);
end
saveas(gcf,[saveDirectory '\1.png']);
Which is not correct as nothing is being saved there. I am not sure about the line:
saveDirectory = [pwd 'S4.selected_dir\Case_' num2str(ii)];
Can anyone suggest me how to save it on the path chosen by the user?

採用された回答

Walter Roberson
Walter Roberson 2016 年 6 月 10 日
saveDirectory = S4.selected_dir;
No quotation marks, no concatenation, no pwd.
The output of uigetdir() is already fully qualified.
  2 件のコメント
adi kul
adi kul 2016 年 6 月 10 日
but I want to save them in user defined folder with subfolder names Case_1, Case_2 etc.
adi kul
adi kul 2016 年 6 月 10 日
fixed it!Thank for the help! :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by