标签: excel matlab printing plot figure
for i = 1:max fh = figure; plot(data); print(fh, '-dbitmap'); xls.Range(figRange).PasteSpecial; end
如何修改上面的代码,以便在将这些数字复制到Excel工作表时不会显示这些数字?
我试过了
set(fh,'Visible','off','CreateFcn','set(plotH(i),''Visible'',''on'')');
但没有成功。