Loading a .fig file in MATLAB without losing information

7 次查看(过去 30 天)
Hi everyone,
I hope you're all doing well. I have a question about loading *.fig files in MATLAB. When I use the openfig function, I notice that the figure is opened without any loss of information, preserving all its components, compared to using get on some children.
I'm interested in loading a file in the *.fig format and incorporating it into a figure, for instance, within a subplot, while ensuring that no information is lost. Could someone guide me on the best approach for achieving this?
Thank you in advance for your assistance!
Best regards,

采纳的回答

KSSV
KSSV 2024-1-24
编辑:KSSV 2024-1-24
h1 = openfig('test1.fig','reuse'); % open existing/ saved figure
ax1 = gca; % get handle to axes of figure
h2 = figure; % create new figure
s1 = subplot(2,1,1); % create and get handle to the subplot axes
fig1 = get(ax1,'children'); % get handle to all the children in the figure
copyobj(fig1,s1); % copy children to new parent axes i.e. the subplot axes

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Title 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by