How do I make my graph as big as possible on the screen?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi - how do I make my graph as big as possible on screen. Thanks
1 件のコメント
採用された回答
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');
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Graph and Network Algorithms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!