figure window generator fig.m, version 3.1

open a new figure window having specified size
2,5K descargas
Actualizado 18 jun 2009

Ver licencia

fig() opens a new figure window of specified size, creates an axes object within the window, and applies any additional figure window properties that are specified. The window size may be given in units of either screen dimensions (i.e., as fractions of the width and height of the screen) or pixels. The calling program may also specify the color of the region inside the axes, the color of the frame around the axes, and any parameters that would be passed to Matlab's figure() function.

Syntax:

handle= fig(w, h, option1, value1, ... );

All calling arguments are optional. Arguments must be specified in pairs. In particular, one cannot specify w without also specifying h.

- w is the window width specified either as a fraction (0 to 1) of the screen width or in pixels (a whole number greater than or equal to 200). The default width is 0.8.

- h is the window height specified either as a fraction (0 to 1) of the screen height or in pixels (a whole number greater than or equal to 100). The default height is 0.6.

Note: The units of w and h must be the same, i.e., you must not specify one as a fraction of the screen dimension and the other in pixels.

Any arguments following w and h are option/value pairs. The options are always strings. Allowed options and corresponding values are as follows:

- AxesColor specifies the color of the region inside the axes.

- BackgroundColor specifies the color of the frame around the axes.

Each color specification must be an RGB 3-tuple, the name of a color (lower-case string), or a color index (1-21). Default colors are white.

Citar como

Phillip M. Feldman (2024). figure window generator fig.m, version 3.1 (https://www.mathworks.com/matlabcentral/fileexchange/24064-figure-window-generator-fig-m-version-3-1), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2009a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Lighting, Transparency, and Shading en Help Center y MATLAB Answers.

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.2.0.0

Version 3.1.1, 6-18-2009:
Fixed code so that parameter name for background color can be either 'BgndColor' or 'BackgroundColor'.

1.1.0.0

- Eliminated dependence on getargs().

- Modified code to allow any parameter name/value pairs that would be accepted by Matlab's figure() function.

- Window width and height may now be specified in units of either screen dimensions or pixels.

1.0.0.0