subplotrc

버전 1.0.0.0 (355 Bytes) 작성자: Andrew Diamond
extension of subplot, subplotrc(m,n,r,c) put suplot in row r, column c of figure.
다운로드 수: 1K
업데이트 날짜: 2006/6/2

라이선스 없음

A totally trivial function that I keep on rewriting in line over and over again. Must be somewhere I'm missing or I'm missing something. Here it is in it's "glorious" entirety (-;
---------
function h=subplotrc(varargin)
% function h=subplotrc(varargin) - extension of subplot
% subplotrc(m,n,r,c) put suplot in row r, column c of figure;
% all other forms passed through to subplot without alteration
if(length(varargin)==4 && all(cellfun(@isnumeric,varargin)))
p=sub2ind([varargin{2},varargin{1}],varargin{4},varargin{3});
h=subplot(varargin{1},varargin{2},p);
else
h=subplot(varargin{:})
end
if(nargout == 0)
clear h;
end

인용 양식

Andrew Diamond (2026). subplotrc (https://kr.mathworks.com/matlabcentral/fileexchange/11272-subplotrc), MATLAB Central File Exchange. 검색 날짜: .

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