From: Adam on
Hi,

I'm saving the contents of my GUI to a .mat file via the save command as shown below:
function save_workspace_Callback(hObject, eventdata, handles)
[workspaceFile,workspacePath] = uiputfile('*.mat','Save Workspace As');
save(strcat(workspacePath,workspaceFile))
end

I also have a open option in the menu as shown below:

function open_workspace_Callback(hObject, eventdata, handles)
[workspaceFile,workspacePath] = uigetfile('*.mat','Load Workspace');
load(strcat(workspacePath,workspaceFile))
end

My question is do I need to set all the edit boxes with the loaded content/replot any plots etc. Or is there a better way to do this?

Thanks