次要情節的例子這裏給出:標籤次要情節在Matlab
http://www.mathworks.com/support/solutions/en/data/1-16BSF/?product=SL&solution=1-16BSF
figure(1)
surf(peaks(10))
colorbar
figure(2)
mesh(peaks(10))
colorbar
figure(3)
contour(peaks(10))
colorbar
figure(4)
pcolor(peaks(10))
colorbar
% Now create destination graph
figure(5)
ax = zeros(4,1);
for i = 1:4
ax(i)=subplot(4,1,i);
end
% Now copy contents of each figure over to destination figure
% Modify position of each axes as it is transferred
for i = 1:4
figure(i)
h = get(gcf,'Children');
newh = copyobj(h,5)
for j = 1:length(newh)
posnewh = get(newh(j),'Position');
possub = get(ax(i),'Position');
set(newh(j),'Position',...
[posnewh(1) possub(2) posnewh(3) possub(4)])
end
delete(ax(i));
end
figure(5)
如何將一個在這個例子中的標籤添加到次要情節?只是增加'圖1''圖2'等將是有益的。
你想添加什麼樣的標籤? –
在我的應用程序中,我創建了一組文件內容的直方圖,並且希望用文件名來標記每個直方圖,即''CFZ12'' – siegel