Graphics | ![]() ![]() |
Printing to a Printer at Screen Size
By default, MATLAB prints your figure at 8-by-6 inches. This size includes the area delimited by the background. This example shows how to print or export it the same size it is displayed on your screen:
From the Windows Menus
From the UNIX Menus
Note. You can also select screen size from the Size and Position tab in the Page Setup dialog box.
From the Command Line
Set the PaperPositionMode
property to auto
before printing the figure.
set(gcf, 'PaperPositionMode', 'auto'); print
If you later want to print the figure at its original size, set PaperPositionMode
back to 'manual'
.
![]() | Printing to a Printer Using the Defaults | Printing to a Printer, Locking the Ticks and Limits of the Axes | ![]() |