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 Center および File ExchangeGraph and Network Algorithms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by