将matlab图形保存到指定目录的脚本
假设我在 matlab 中打开了几个图形。我想要一些可以调用的函数,例如 save_all_figures_to_directory('dir_name')
,它将迭代所有图形并将它们保存到指定的文件夹。我该怎么做?
Suppose I have several figures open in matlab. I would like some function I can call, e.g save_all_figures_to_directory('dir_name')
, that would iterate over all figures and save them to the specified folder. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用Matlab函数
findobj
:You can use the Matlab function
findobj
: