figure window generator fig.m, version 3.1

버전 1.2.0.0 (5.46 KB) 작성자: Phillip M. Feldman
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