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!