position_figure

버전 1.2.0.0 (1.73 KB) 작성자: Christoph Feenders
Similar to subplot(), position_figure() divides the screen into panes to position figures in.
다운로드 수: 669
업데이트 날짜: 2020/4/2

라이선스 보기

Similar to subplot(), position_figure() divides the screen into
rectangular panes to position figures in.

Syntax:
position_figure(no_rows, no_columns, fig_no)

where
'no_rows' is the total number of figure-rows
'no_columns' is the total number of figure-columns
'fig_no' is the running number of the current figure
(numbered row-wise) or vector of running numbers,
to stretch figure over multiple tiles

Examples:

* position_figure(2, 3, 4) divides the screen into 6 rectangles
that are arranged in 2 rows and 3 columns. The current figure is
placed in the lower left corner of the screen. If no figure
exists yet, a figure window is opened and placed accordingly.

* position_figure(1, 1, 1) makes the figure appear full-screen.

* position_figure(2, 3, [3 6]) divides the screen into 6 rectangles
that are arranged in 2 rows and 3 columns. The current figure is
placed on the right two panes.

인용 양식

Christoph Feenders (2024). position_figure (https://www.mathworks.com/matlabcentral/fileexchange/35511-position_figure), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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

* function now supports stretching figures over multiple panes (just as subplot does)
* simplified code

1.1.0.0

* gave variables speaking names
* improved usage example
* changed tags

1.0.0.0