How to get default 'OuterPosition' for a figure?

5 vues (au cours des 30 derniers jours)
A
A le 11 Mai 2015
Commenté : Star Strider le 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)

Réponse acceptée

Star Strider
Star Strider le 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 commentaires
A
A le 11 Mai 2015
Thanks again!
Star Strider
Star Strider le 11 Mai 2015
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by