From: Adam on 16 Jun 2010 14:24 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
|
Pages: 1 Prev: image matrix aglinment Next: (probably) an easy simulink problem |