2010年10月31日星期日

Matlab 生成 pdf

在用Matlab生成pdf的时候,一个一个的保存pdf非常麻烦和费时。特别是图很多的时候,特别痛苦。 现在介绍一个方法可以自动生成pdf。代码如下:

%set the width and heigth of figure
set(gcf, 'PaperUnits', 'points');

%set(gcf, 'paperposition', [xLeft yTop Width Heigth])
set(gcf, 'PaperPosition', [100 100 300 500]);

% you can change fileName to the name you want
print -dpdf -loose fileName.pdf
Publish Post

没有评论: