MATLAB: How to create a PDF file of a figure without whitespace around it

epsfileMATLABprintedto

When I print or save a figure to a PDF-file, the resulting file has white space around the figure.
For example, execute the following commands
plot(1:10)
print -depsc test_print1
and then open file test_print1.eps

Best Answer

Go to File->Export Setup and check the 'Expand axes to fill figure' check box and then click "Apply to Figure"
Then use the following commands:
set(gcf, 'PaperUnits', 'normalized')
set(gcf, 'PaperPosition', [0 0 1 1])
print -depsc test_print