Halcom 发表于 2017-1-5 21:52:15

MATLAB数据(图像图形)直接写入PPT

%% Keep track of the current PPTX presentation
persistent PPTXInfo
%% Constants
% - EMUs (English Metric Units) are defined as 1/360,000 of a centimeter
%   and thus there are 914,400 EMUs per inch, and 12,700 EMUs per point
PPTXInfo.CONST.IN_TO_EMU         = 914400;
PPTXInfo.CONST.PT_TO_EMU         = 12700;
PPTXInfo.CONST.DEG_TO_EMU          = 60000;
PPTXInfo.CONST.FONT_PX_TO_PPTX   = 100;
PPTXInfo.CONST.DEFAULT_DIMENSIONS= ;   % in inches
%% Initialize PPTXInfo (if it's not initialized yet)
if ~isfield(PPTXInfo,'fileOpen'),
    PPTXInfo.fileOpen   = false;
end

页: [1]
查看完整版本: MATLAB数据(图像图形)直接写入PPT