How do I make my graph as big as possible on the screen?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi - how do I make my graph as big as possible on screen. Thanks
1 Commento
Risposta accettata
Chandra Kurniawan
il 11 Gen 2012
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 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Graph and Network Algorithms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!