输出数字

时间:2014-11-25 08:56:40

标签: matlab parameters parameter-passing figure

我遇到了导出数字的this程序。我只是想问一下,如果我想将我的图形导出到某个图像(即.jpg),我应该传递给该程序,因为我无法弄清楚要传递的参数。

感谢。

2 个答案:

答案 0 :(得分:1)

内置命令print用于将图形导出到图像。像这样:

 plot(rand(4))
 print('-djpeg', 'myplot.jpg')

答案 1 :(得分:0)

patrik的建议可能是指this ME file。 (顺便说一下,这很棒)

原生MATLAB解决方案

saveas(<handle of the figure>,<file path with .jpg at the end>)

这是我长期使用它并且有效(例如saveas(h,'/figures/automatic/myfig.jpg'));但print或其他东西很可能因任何原因而更适合。