保存 Matlab 图形而不绘制它?
有没有一种方法可以保存图形而不实际绘制它? 我的意思是,假设我想保存 plot(1:10, (1:10).^2)
的图表,我可以保存它而不显示它吗?
我想通过切断不必要的图形绘制来缩短运行时间(保存后这些图形无论如何都会关闭)。
谢谢!
Is there a way of saving a figure plot without actually plotting it?
I mean, let's say I want to save the graph for plot(1:10, (1:10).^2)
, can I save it without showing it?
I want to make the run time shorter by cutting off the unnecessary plotting of the figures (those will be closed anyway after saving).
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以这样做:
This can be done:
还有
saveas(h,'filename.ext')
函数可以以某些格式保存图形。There is also the
saveas(h,'filename.ext')
function which can save a figure in some formats.