What does this code mean set(0,'Units','Pixels');
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
What does this code mean set(0,'Units','Pixels');
0 commentaires
Réponse acceptée
Star Strider
le 20 Sep 2014
I believe it sets the root object (the computer screen) 'Units' property to 'Pixels' (the default).
2 commentaires
Plus de réponses (1)
Guillaume
le 20 Sep 2014
Modifié(e) : Guillaume
le 20 Sep 2014
0 is the root of all graphics objects. So this sets the Unit property of the root to pixels. See this page for a full description of all the properties of the root.
In this case, it sets the unit for the values returned by ScreenSize and PointerLocation to pixel (the default).
3 commentaires
Voir également
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!