【发布时间】:2014-10-29 18:45:32
【问题描述】:
我有一个带有一些轴的 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 中的轴不在新图中的轴 1 上?
【问题讨论】:
标签: matlab matlab-guide