How do I save a figure as a png to a different directory?
63 次查看(过去 30 天)
显示 更早的评论
I need help saving my figure to a different directory than the one I'm running my code in. The directory I want to save it to is /Volumes/Expansion/dispersion.
This is what I have so far. I'm not sure how to incorporate the directory I want to save the figure to.
header = 'title of figure on plot';
print(gcf,header,'-dpng','-r300');
0 个评论
采纳的回答
Jon
2021-10-29
x = [1 2 3]
y = x.^2
plot(x,y)
exportgraphics(gcf,'/Volumes/Expansion/dispersion/myplot.jpg')
5 个评论
Jon
2021-10-29
编辑:Jon
2021-10-29
If you just want to use the print command as you have started, you just have to append the path to the filename so:
filename = 'myfile'
name = fullfile('Volumes','Expansion','dispersion',filename)
print(name,'-dpng','-r300')
In the above I also built the filename programatically in case you wanted to do that
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!