在 MATLAB 中自动将图窗写入文件
有谁知道是否可以在 MATLAB 中自动将图形写入 .eps 文件?
我正在运行一个生成大量图表的脚本,如果我不必手动保存每个图表,那就太好了!
Does anyone know if it's possible to automatically write a figure out to a .eps file in MATLAB?
I'm running a script that produces a large number of graphs, and it'd be nice if I didn't have to manually save each one!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
打印函数 的作用是:
print function does that:
print 或 saveas 就可以了。
如果您想指定输出文件名,最好使用 saveas。
print or saveas will do the trick.
If you want to specify the output file name, you're better off using saveas.
这在另一个问题中得到了回答,使用打印命令。 尽管该问题涉及制作 .tiff 图像,但修改这些答案中给出的代码以编写 .eps 应该很简单。
This was answered in this other question, using the PRINT command. Although that question dealt with making .tiff images, it should be straightforward to modify the code given in those answers to write a .eps.
假设您要在循环中生成 N 个数字,那么您应该尝试使用命令行:
saveas(gca,sprintf('Figure%02d.pdf',N ));
它会生成 N 个数字图1.pdf - 图N.pdfsaveas(gca,sprintf('Figure%02d.eps',N ));
它会生成 N 个数字Figure1.eps - FigureN.eps来代替
gca
可以使用gcf
也。 第一个命令行是一个更好的解决方案。希望这能解决您的问题。
Suppose, you are generating N numbers of figures in a loop, then you should try the command line:
saveas(gca,sprintf('Figure%02d.pdf',N ));
it produces N figures Figure1.pdf - FigureN.pdfsaveas(gca,sprintf('Figure%02d.eps',N ));
it produces N figures Figure1.eps - FigureN.epsin place of
gca
one can usegcf
also. First command line is a better solution.Hope this will solve your issue.