保存 Matlab 图形而不绘制它?

发布于 2024-11-03 20:26:16 字数 154 浏览 5 评论 0原文

有没有一种方法可以保存图形而不实际绘制它? 我的意思是,假设我想保存 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温馨耳语 2024-11-10 20:26:16

可以这样做:

set(gcf,'Visible','off');
plot((1:10),(1:10).^2);
print -dpng c:\chris.png  % or whatever your print command is

This can be done:

set(gcf,'Visible','off');
plot((1:10),(1:10).^2);
print -dpng c:\chris.png  % or whatever your print command is
你怎么敢 2024-11-10 20:26:16

还有 saveas(h,'filename.ext') 函数可以以某些格式保存图形。

There is also the saveas(h,'filename.ext') function which can save a figure in some formats.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文