How to put existing figures in one figure together in case labels are also existing?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have two existing figures ('0001.fig" and "0002.fig"), and want to put in one figure together vertically.
Due to the "Class labes", it is difficult.
Thank you,
openfig('0001.fig')
openfig('0002.fig')
댓글 수: 0
채택된 답변
Angelo Yeo
2024년 6월 12일
fig1 = openfig('0001.fig');
ax1 = findobj(fig1, 'type', 'axes');
cb1 = findobj(fig1, 'type', 'colorbar');
cmap1 = colormap(ax1);
fig2 = openfig('0002.fig');
ax2 = findobj(fig2, 'type', 'axes');
cb2 = findobj(fig2, 'type', 'colorbar');
cmap2 = colormap(ax2);
% A new figure and make it tile-layouted
newFig = figure;
t = tiledlayout(2, 1);
% copy axes from the first figure
nexttile(t);
new_ax1 = gca;
copyobj(allchild(ax1), new_ax1);
title(new_ax1, get(get(ax1, 'Title'), 'String'));
% copy the colorbar 1
if ~isempty(cb1)
new_cb1 = colorbar(new_ax1, 'Position', cb1.Position);
set(new_cb1, 'Limits', cb1.Limits, 'Ticks', cb1.Ticks, 'Location', cb1.Location, 'Color', cb1.Color, 'TickLabels', cb1.TickLabels);
colormap(new_ax1, cmap1)
grid on;
end
% copy axes from the second figure
nexttile(t);
new_ax2 = gca;
copyobj(allchild(ax2), new_ax2);
title(new_ax2, get(get(ax2, 'Title'), 'String'));
grid on;
% copy the colorbar 2
if ~isempty(cb2)
new_cb2 = colorbar(new_ax2, 'Position', cb2.Position);
set(new_cb2, 'Limits', cb2.Limits, 'Ticks', cb2.Ticks, 'Location', cb2.Location, 'Color', cb2.Color, 'TickLabels', cb1.TickLabels);
colormap(new_ax2, cmap2)
end
% close original figures
close(fig1);
close(fig2);
댓글 수: 2
Angelo Yeo
2024년 6월 12일
It's mostly about copying the properties from original figures. That's why it got long. Happy to help!
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!