figure window generator fig.m, version 3.1

open a new figure window having specified size
2.5K 次下载
更新时间 2009/6/18

查看许可证

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.

引用格式

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. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Lighting, Transparency, and Shading 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
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