matlab print函数中参数的问题

print函数是保存图片的意思

看到了几行代码 其中print函数中有‘-deps’这样的参数 上网查也没有查到
求各位大佬赐教他的意思

clear;
for i=1:10
    x = linspace(0,10,101);
    plot(x,sin(x+i));
    num2str(i);
    print(gcf,'-deps',strcat('plot', num2str(i), '.ps'));
end

matlab中,将光标移到 print 函数中,键盘上按F1,可以查看到print函数的帮助文档,里面有对参数 -deps 的介绍
图片说明

-deps 指定保存的文件的格式为 EPS 类型,后缀名为 .eps

This table lists the supported vector graphics formats.

Option Vector Graphics Format Corresponding File Extension
'-dpdf' Full page Portable Document Format (PDF) color .pdf
'-deps' Encapsulated PostScript (EPS) Level 3 black and white .eps

Encapsulated PostScript (EPS)
被封装的PostScript格式(PostScript是一种编程语言)
带有预视图象的PostScript格式(PostScript是一种编程语言)