How to change saved image size in Matlab

There is two ways to do this.

1. Use separate “set” command to change the output size

  • figure(1)
  • screen=[100,100,1536,864];
  • set(figure(1),’Position’,screen);
  • set(figure(1),’PaperPosition’,[0 0 8.5 11.0]; %usletter
  • set(figure(1),”PaperPositionMode’,'Auto’);

 2. Use figure command

  • screen=[100,100,1536,864];
  • figure1=figure(‘PaperPositionMode’,'Auto’,'PaperPosition’,[0 0 8.5 11.0],’Position’,screen)
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.