What does this code mean set(0,'Units','Pixels');
9 ビュー (過去 30 日間)
古いコメントを表示
What does this code mean set(0,'Units','Pixels');
0 件のコメント
採用された回答
Star Strider
2014 年 9 月 20 日
I believe it sets the root object (the computer screen) 'Units' property to 'Pixels' (the default).
その他の回答 (1 件)
Guillaume
2014 年 9 月 20 日
編集済み: Guillaume
2014 年 9 月 20 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!