How do I make my graph as big as possible on the screen?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi - how do I make my graph as big as possible on screen. Thanks
1 Kommentar
Akzeptierte Antwort
Chandra Kurniawan
am 11 Jan. 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 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!