Subplot Handle

버전 1.0.0.0 (748 Bytes) 작성자: GerdaHotlich
Initialisation of subplot function that only requires row and col or index in the following
다운로드 수: 201
업데이트 날짜: 2014/4/10

라이선스 보기

Creating large subplots with changing organization can be tedious and erronious.
With this simple handle you can manage your subplots easily. Moreover, you can come back easily to your figure without managing the figure handle.

Usage:
- h = SUBPLOT_HANDLE( 2,3 ) generates subplot handle for 2 rows and 3 cols
- h(1,2) will then generate a subplot in row 1 and col 2 of this figure (even if you use a different figure in the meanwhile)
- h(1) will create a subplot with original indexing in row 1 col 1, and iterates thence through all further subplots

Example:
h = subplot_handle( 2,1 );
h(1); % similar to h(1,1)
fplot( @(x) sin(x), [-pi pi] );
h(2); % similar to h(2,1)
fplot( @(x) cos(x), [-pi pi] );

인용 양식

GerdaHotlich (2026). Subplot Handle (https://kr.mathworks.com/matlabcentral/fileexchange/46187-subplot-handle), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2013b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Graphics Objects에 대해 자세히 알아보기
태그 태그 추가
버전 게시됨 릴리스 정보
1.0.0.0