Copy a figure to UI

1 回表示 (過去 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 Center および File ExchangeDevelop uifigure-Based Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by