how can I copy multiple Matlab.fig files, each with multiple subplots, into a single plot
4 次查看(过去 30 天)
显示 更早的评论
I am trying to write a script to programmatically open multiple FIG files (each of which has a single plot consisting of 3 subplots) and then place then on a single plot, and then save that as a FIG file. I have followed an example posted in this site, modified with my file names. What happens is that only the last subplot from each FIG file is placed on the new figure (with handle h3). How do I get all the original subplots to appear on the new plot? I have attached the two FIG files.
h1 = openfig('ROC_whole_b1','reuse')
ax1 = gca;
h2 = openfig('ROC_whole_b2','reuse')
ax2 = gca;
h3 = figure;
s1 = subplot(1,2,1)
s2 = subplot(1,2,2)
fig1 = get(ax1,'children');
fig2 = get(ax2,'children');
copyobj(fig1,s1);
copyobj(fig2,s2);
2 个评论
Walter Roberson
2014-2-2
Do the figures contain any uicontrol or uipanel? Do all the figures use the same colormap, or alternately are all objects in the figure colored by RGB ?
回答(2 个)
Amit
2014-2-1
You need to get handle for all the subplots in each figure.
% First open a new figure
hh = figure;
% Open First File
h1 = openfig('ROC_whole_b1','reuse');
axesVal = findobj(gcf,'Type','axes');
handle = get(axesVal,'Children');
figure(hh);
for j = 1:3
s = subplot(3,2,j); % You said 3 subplots in each figure and total 2 figures. Thus 6 section on the figure
copyobj(handle{j},s);
end
You get the point now.
6 个评论
Amit
2014-2-7
Jeff,
I am a graduate student and I use Matlab significantly. One thing I know is what can be a headache and how I can avoid it. Sometimes writing a script is better than re-engineer something as re-engineering requires more work than simply writing it.
In you case, you have 3 different axes and the person who wrote the plotting file wrote it nicely for a certain purpose. Now you're trying to take that plot and reengineer it to do it. If I was in your shoes, I'll simply study the original script and change it to do anything I want. (I did read the plotting script and it is a simpler fix to me to re-write it to serve my purpose).
As far as passing the question, you can probably repost your issue!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!