JustDoFPGA
文件下载地址:
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文件如下:
[转载]直接保存Matlab图像到PPT文件


分类:

技术点:

相关文章:

  • 2021-12-04
  • 2021-05-27
  • 2022-02-09
  • 2022-02-08
  • 2021-09-19
  • 2022-02-25
猜你喜欢
  • 2021-11-23
  • 2022-12-23
  • 2021-07-18
  • 2022-12-23
  • 2022-02-09
  • 2021-05-12
  • 2022-02-03
相关资源
相似解决方案