Matlab图片导出为eps格式

比较好用的方法是使用第三方图像导出工具export_fig,可以导出EPS、PDF并嵌入字体

具体方法:

1.下载export_fig工具包

export_fig - File Exchange - MATLAB Central (mathworks.cn)icon-default.png?t=N7T8https://ww2.mathworks.cn/matlabcentral/fileexchange/23629-export_fig或者:altmany/export_fig: A MATLAB toolbox for exporting publication quality figures (github.com)

2. 将工具包添加到matlab的路径,并保存

Matlab图片导出为eps格式_第1张图片

3. 使用时,matlab输入命令:

export_fig ('A:\ITP_data\data\figure','-eps','-painters')

或者:

export_fig figure.eps;

你可能感兴趣的:(matlab,开发语言)