Saving a figure bigger than screen size
22 views (last 30 days)
Show older comments
I am trying to save a figure bigger than screen size, but it gets cut. How can I do it?
1 Comment
Frederik Brasz
on 20 Jun 2017
Make the figure invisible before setting it's size with
set(fig, 'visible', 'off')
Answers (2)
Robbin van Hoek
on 12 May 2015
Edited: Robbin van Hoek
on 12 May 2015
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 Comments
See Also
Categories
Find more on File Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!