How do I make my graph as big as possible on the screen?

조회 수: 1 (최근 30일)
Tom
Tom 2012년 1월 11일
Hi - how do I make my graph as big as possible on screen. Thanks
  댓글 수: 1
Matt Fig
Matt Fig 2012년 11월 2일
Hi - how do I make my graph as big as possible on screen. Thanks

댓글을 달려면 로그인하십시오.

채택된 답변

Chandra Kurniawan
Chandra Kurniawan 2012년 1월 11일
Just a little example with imshow
scrsz = get(0,'screensize');
imshow('peppers.png');
set(gcf,'position',scrsz);
Or may be :
scrsz = get(gcf,'position');
set(gca,'unit','pixel','position',[0 0 scrsz(3) scrsz(4)]);
imshow('peppers.png');

추가 답변 (1개)

Tom
Tom 2012년 1월 12일
That's great thanks.

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by