Saving a figure bigger than screen size
21 次查看(过去 30 天)
显示 更早的评论
I am trying to save a figure bigger than screen size, but it gets cut. How can I do it?
1 个评论
Frederik Brasz
2017-6-20
Make the figure invisible before setting it's size with
set(fig, 'visible', 'off')
回答(2 个)
Robbin van Hoek
2015-5-12
编辑:Robbin van Hoek
2015-5-12
have you tried setting the outerposition bigger than the screensize?
full screen:
figure('units','normalized','outerposition',[0 0 1 1]);
twice sceensize:
figure('units','normalized','outerposition',[0 0 2 2]);
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!