Pages

Tuesday, September 29, 2009

Matlab hacks

If you are interested in exporting a matlab figure to put it into a paper at high resolution, you may find the following commands useful (once the figure is open on the screen):

set(gcf,'PaperPositionMode','auto');
print -depsc -r200 myfig

This will save into a eps file with 200dpi resolution.

More here.

Categories