axes units normalized position

조회 수: 26 (최근 30일)
Ahmed El sherif
Ahmed El sherif 2015년 4월 12일
답변: Jan 2015년 4월 12일
Hi there, if i possible i'd like a brief explanation of these lines below
ha = axes('units','normalized','position',[0 0 1 1]);
uistack(ha,'bottom');
Thanks.

채택된 답변

Jan
Jan 2015년 4월 12일
The command axes creates an axes object (see: doc axes). It is created with 'normalized' units, such that the position [0,0,1,1] fills the complete window: Start at point 0,0 in the left bottom and use the full width and height.
Then uistack move this axes object below all other axes, such that it is in the background and does not cover other axes. See: doc uistack .

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by