how to export figure data into a .mat file

12 ビュー (過去 30 日間)
A
A 2012 年 6 月 6 日
X=[0:.1:10];
Y=rand(length(X));
plot(X,Y)
is there a way to add a menu item to the figure window to save data (X,Y) into a file (have the user specify file name and location when they click on this menu item)

採用された回答

Walter Roberson
Walter Roberson 2012 年 6 月 6 日
You can use uicontextmenu() to create a context menu, and you can set that to be the UiContextMenu property of an object such as an axes (and of anything else on the axes that you want to be independently clickable for other reasons, as context menus are sensitive to context)
Probably more often one would create a uicontrol('style','pushbutton') to do the work.
Use uiputfile() to have the user select a suitable output file.

その他の回答 (1 件)

Thomas
Thomas 2012 年 6 月 6 日
In the figure gui click..
File>Save Workspace As..>'Any filename'
  1 件のコメント
A
A 2012 年 6 月 6 日
the figure is generated within a function so it does not exist in the workspace

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

カテゴリ

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