Copy a figure to UI

4 次查看(过去 30 天)
Shambhavi Adhikari
Shambhavi Adhikari 2020-5-18
评论: Tommy 2020-5-19
I have a gcf generated in between the code and i want to project it to a UI. I am doing this so that a user with no MATLAB can still see my figure after i convert my code to standalone application (exe).
But, i am running into issues. Can you please help me here? This does nothing.
hf=gca;
uicontrols = findall(hf,'Type','uicontrol','Parent',hf);
% Specifying the parent will remove children of children of hf from the list
childObjects = get(hf,'Children');
types = get(childObjects,'Type');
uicontrolIndecies = strcmp(types,'uicontrol');
uicontrols = childObjects(uicontrolIndecies);
set(0,'units','pixels');
Pix_SS = get(0,'screensize');
% Generate a figure
width = 800;
height = 600;
height_offset = Pix_SS(4) - height - 100;
fig = uifigure('Name','Plot1','Position',[50 height_offset width-50 height]);
set(fig,'Resize','off');
p = uipanel(fig,'Position',[50 height_offset-100 width height]);
copyobj(uicontrols,p);
  2 个评论
Christophe
Christophe 2020-5-19
In the first line, gca is the current axes handle. In the second line, you are searching for uicontrols inside the axis object.I don't think you can find anything inside an axis. And the function copyobj may not work withthe "new" uifigure.
Tommy
Tommy 2020-5-19
I don't believe you need to use a uifigure if you want users without MATLAB to be able to see your figure. Have you tried compiling and running your program while leaving the figure as a figure object?

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop uifigure-Based Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by