set paper output size of matlab figure
February 12th, 2009 by Lawrence David
a friend once asked:
Having previously benefited from your stinkpot.org tricks, I’m wondering if you
know a way to fix the output size (e.g., dimensions in pixels or inches) of
Matlab figures.
here’s one way of going about rotating the paper orientation figure and then setting its dimensions (in inches):
set(gcf,’PaperOrientation’,'landscape’)
set(gcf,’PaperPosition’,[0,0,11,8.5])