我在网上找到了以下代码(http://www.mathworks.com/matlabcentral/newsreader/view_thread/322200)
[fileName filePath] = uiputfile('*.jpg','Save As');
if filePath == 0
return;
end
saveFileAs = ([filePath fileName]);
addpath('export_fig')
export_fig(handles.axes1,saveFileAs);
set(gcf, 'Color', 'w');
我在Matlab GUI中使用它(通过按钮)。我的问题是,我需要设置(gcf,'颜色','w')行,因为我删除它,一切看起来都好吗?它做了什么?
由于