原文地址:直接保存Matlab图像到PPT文件作者:ronei
文件下载地址:
http://www.mathworks.com/matlabcentral/fx_files/340/1/saveppt.m
参考: http://www.advancedmcode.org/matlab-and-microsoft-office-powerpoint.html
该函数可以直接保存Matlab图像到Powerpoint。
如果ppt文件不存在,生成新的文件,如果存在,在文件尾加入新的一个slide。
可以自定义title。
算例:
clear all;
clc;
%%
h(1) = figure;
peaks;
h(2) = figure;
membrane;
h(3) = figure;
spy;
h(4) = figure;
tori4;
%% save figure to ppt
for i=1:4
saveppt(\'test.ppt\',[\'h(\' num2str(i) \')\'],h(i));
end
%%
close all;
生成ppt文件如下:
http://www.mathworks.com/matlabcentral/fx_files/340/1/saveppt.m
参考: http://www.advancedmcode.org/matlab-and-microsoft-office-powerpoint.html
该函数可以直接保存Matlab图像到Powerpoint。
如果ppt文件不存在,生成新的文件,如果存在,在文件尾加入新的一个slide。
可以自定义title。
算例:
clear all;
clc;
%%
h(1) = figure;
peaks;
h(2) = figure;
membrane;
h(3) = figure;
spy;
h(4) = figure;
tori4;
%% save figure to ppt
for i=1:4
saveppt(\'test.ppt\',[\'h(\' num2str(i) \')\'],h(i));
end
%%
close all;
生成ppt文件如下: