Copy a figure to UI

4 views (last 30 days)
Shambhavi Adhikari
Shambhavi Adhikari on 18 May 2020
Commented: Tommy on 19 May 2020
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 Comments
Christophe
Christophe on 19 May 2020
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 on 19 May 2020
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?

Sign in to comment.

Answers (0)

Categories

Find more on Develop uifigure-Based Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!