position_figure

Similar to subplot(), position_figure() divides the screen into panes to position figures in.
669 Downloads
Aktualisiert 2. Apr 2020

Lizenz anzeigen

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.

Zitieren als

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

Kompatibilität der MATLAB-Version
Erstellt mit R2019b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Quellenangaben

Inspiriert: Position fo a ball with time

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
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