Save base workspace MAT file from GUI

2 ビュー (過去 30 日間)
Jason
Jason 2011 年 11 月 18 日
Guys -
I'm writing a GUI in which I'd like to put a pushbutton to save the entire base workspace to a .mat file. Problem is I don't know how to do that from the GUI subfunction workspace. Can anyone point me to the right approach or write a couple lines I can put in the pushbutton's callback function to save the base workspace as .mat?

採用された回答

Jan
Jan 2011 年 11 月 18 日
I do not think, that this method have enough control over what is written. But if you really want to save the base workspace to a MAT file:
evalin('base', 'save(''FileName.mat'')');
  3 件のコメント
Jan
Jan 2011 年 11 月 18 日
FileName = 'test.mat';
evalin('base', ['save(''', FileName ''')']);
Jason
Jason 2011 年 11 月 19 日
Thanks Jan, you rock!

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

その他の回答 (1 件)

Naz
Naz 2011 年 11 月 19 日
Here is what I would do: for saving a particular set of variables in the struct you can create a struct and save it:
structDATA=struct('your1var',handles.your1var,'your2var',handles.your2var);
save ('filename', 'structDATA');
If you want to save all the variables from handles, then just do:
save ('filename', 'handles');
I hope this will work
  2 件のコメント
Jason
Jason 2011 年 11 月 19 日
Thanks Naz.
Mohamed Sarillee
Mohamed Sarillee 2013 年 1 月 31 日
thank you.... :-)

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

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by