1
我有一些軸的Gui。 現在我將把一個軸放到一個新的數字上。 這裏是我的代碼:Matlab的GUI軸圖
h = handles.axes3; % Find the axes object in the GUI
f1 = figure % Open a new figure with handle f1
s = copyobj(h,f1); % Copy axes object h into figure f1
print(f1,'-dpsc', 'raspberry.eps');
這工作,但窗口沒有大小與數字相同。 我認爲GUI中的軸不在新圖中的axes1上?