axes units normalized position

26 views (last 30 days)
Ahmed El sherif
Ahmed El sherif on 12 Apr 2015
Answered: Jan on 12 Apr 2015
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.

Accepted Answer

Jan
Jan on 12 Apr 2015
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 .

More Answers (0)

Categories

Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!