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)
Posted by ucsdnemo