How to get default 'OuterPosition' for a figure?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
A
am 11 Mai 2015
Kommentiert: Star Strider
am 11 Mai 2015
Hi guys,
If I have the below figure, how can I get its default 'OuterPosition'? I need this information so I can manipulate the 'OuterPosition' based on what the default value is.
Thanks
surf(peaks)
0 Kommentare
Akzeptierte Antwort
Star Strider
am 11 Mai 2015
You almost answered your own Question!
This works:
figure(3)
surf(peaks)
op = get(gcf,'OuterPosition')
The 'OuterPosition' property is returned in ‘op’.
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown 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!