Naming figures (fig.m)

버전 1.4.0.0 (1.64 KB) 작성자: Aslak Grinsted
Create new figures with a window title which can be used as a handle.
다운로드 수: 2.9K
업데이트 날짜: 2013/9/3

라이선스 보기

This function works just like the figure command in MATLAB except that you reference figures by names instead of figure handles. (you can still use the handles though)

H=fig('My figure')

The title of the window of the figure will now be 'My figure'. You can also set figure properties with the same call:

fig('My figure','renderer','opengl');

It will also place the figure window on the monitor with the current mouse position.

인용 양식

Aslak Grinsted (2024). Naming figures (fig.m) (https://www.mathworks.com/matlabcentral/fileexchange/3431-naming-figures-fig-m), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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

Fixed a bug in positioning code.

1.2.0.0

*added screenshot

*no longer lets it change paperorientation by default.

1.0.0.0

Update: Only sets any default attributes if a new figure is created... Uses orient landscape instead of set(H,'orientation','landscape').