Figure window placement - fig.m

버전 1.0.0.0 (1.84 KB) 작성자: Miroslav Balda
Function fig.m opens figure window on coded place of the screen.
다운로드 수: 4K
업데이트 날짜: 2006/8/17

라이선스 보기

Function fig.m is prepared for fast positioning of a figure windows on screen by means of the window position code. The general positioning is also possible. Position codes belong to parts of the screen as follows:

1 top left
2 top right
3 bottom left
4 bottom right
5 full screen
6 left half
7 right half
8 upper half
9 lower half
10 user defined position

The other way to define general position of a figure window is via the position vector of normalized measures [left bottom width height].
It obtains the position code equal 10.

Function calling:
~~~~~~~~~~~~~~~~~
fih = fig(pos); % Creates a figure window and its handle
pos is a position code of the figure, or a vector of four real elements <= 1 = position measures
fih is a handle of the figure

Examples:
~~~~~~~~~
hf = fig([.25, .25, .5, .5]); % figure in the center of the screen
fig(2); % figure window in the right upper quarter of the screen
fig(10); % last user's figure position (here in the screen center)

인용 양식

Miroslav Balda (2024). Figure window placement - fig.m (https://www.mathworks.com/matlabcentral/fileexchange/9035-figure-window-placement-fig-m), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R14
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Enhancement of the function behaviour