How can I copy figure to UIAxes?
20 次查看(过去 30 天)
显示 更早的评论
I created figure which includes gramm graphs. I want to copy this figure to UIAxes component. I tried copyObj but I couldn't solve it.
回答(2 个)
Walter Roberson
2020-7-6
Use imhandles() on the figure that is showing the gramm object.
You can now copyobj() the resulting handle(s) to a uiaxes that is part of a uifigure. You can also, if appropriate, set the Parent property of the image handles to be the uiaxes.
ufig = uifigure();
uax = axes('Parent', ufig);
tfig = figure();
tax = axes('Parent', tfig);
image('Parent', tax); %there is a default image.
imh = imhandles(tfig); %pretending we do not have the image handle easily available
imh.Parent = uax; %move the image from the traditional axes to the uiaxes.
0 个评论
Mehmed Saad
2020-7-6
a = uiaxes;
b = getframe(gca);
imshow(b.cdata,'Parent',b)
There might be some quality issues
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!