Opening stored figures directly in GUI

3 次查看(过去 30 天)
I've stumbled upon this problem which I thought would be easy to solve, but my limited experience with Matlab forced me to seek for help.
I have a figure stored in a .fig file, and I have a GUI with an 'axes' object. I would like to open the stored figure file and display the figure in the axes of the GUI. What is the best way to achieve this?
Thank you very much for your help!

回答(2 个)

Sean de Wolski
Sean de Wolski 2012-7-3
编辑:Sean de Wolski 2012-7-3
This is not possible. An axes cannot be a container for a figure. You could load the figure, take a snapshot of it ( getframe or print ) and then display this as an image in the axes but all functionality will be gone.
What are you trying to do? Perhaps we could help you come up with a nicer solution.
  1 个评论
Lipa
Lipa 2012-7-4
Thank you for your reply!
What I would like to do is the following: In one program, I create a surface plot which is then stored on disk as 'plot.fig'. Then, in another GUI program, I would like to bring up that stored figure for viewing with full functionality. It is straightforward to just open the figure in its own window using 'openfig', but I would much prefer if I could open it in some predefined space within the GUI (i.e. the "axes" object), and not in another window.
Any further ideas are most appreciated!

请先登录,再进行评论。


Kevin Claytor
Kevin Claytor 2012-7-3
You could transfer the data over reasonably fast with something like;
% Example of transfering data from one figure to another
f1 = figure; % The figure we want to transfer to
h2 = subplot(3,3,4); % The axes we want to transfer to
od = open('untitled.fig'); % Load our saved figure
%get(get(x,'CurrentAxes'))
% This command displays all the options we can
% transfer over, for this example, I'll just transfer the data
datahandles = get(get(x,'CurrentAxes'),'Children');
for ii = 1:length(datahandles)
set(datahandles(ii),'Parent',h2);
end
% Close the other figure
close(od)
You'll have to tweak it to transfer other properties (title, labels, etc) over, but that should get you started.
  4 个评论
Jan
Jan 2016-3-22
@Cheng: As you found out, you cannot open a the contents of a fig file in an axes object. You can copy axes objects to axes objects using copyobj.
Cheng, Nestic
Cheng, Nestic 2016-3-29
Thanks for reply!!! I've got some further question about using copyobj these days,try to copy axes objects to axes objects just as your mention(still failed :P) Therefor I write another Post to ask more about this! http://www.mathworks.com/matlabcentral/answers/275954-problem-with-transfer-information-from-a-axes-to-another-in-gui-using-copyobj

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by