RectRange

버전 1.0.0 (14.5 KB) 작성자: Chi
a MATLAB function for obtaining coordinate range of a selected rectangle in figure
다운로드 수: 74
업데이트 날짜: 2018/7/29

Warning! Do not use this function upon your final prepared/optimized figure, because it will manipulate Axes Aspect Ratio.

[Xrange,Yrange]=rectrange(xgrid,ygrid,f) lets you select a rectangle in the current figure using the mouse. The figure has to be generated based on a rectangle grid (X, Y) which is usually produced by using function MESHGRID. Then the coordinate ranges of the selected rectangle (Not its position.Thus, its different from function GETRECT) based on grid (xgrid,ygrid) will be derived.This would be useful when you have a map generated based on grids of longitudes and latitudes and want to know longitude/latitude range of a certain region. However, this function won't work when the map is produced by using M_Map toolbox due to projection issues.

Inputs

xgrid,ygrid - The rectangle grid on which the figure bases. Usually, they are generated by [xgrid,ygrid]=meshgrid(xgv,ygv). See meshgrid.m.

f - The handle of the figure. For exmaple, f = figure;

'precise' - Default output mode. The precise coordinate ranges will be obtained no matter there are intervals between grid points.

'nearest' - Other than 'presice', the coordinate ranges of your selected rectangle in x- and y-direction will be derived from 4 grid points close to each vertex of the rectangle.

Outputs

Xrange - The range of selected rectangle in x-direction.

Yrange - The range of selected rectangle in y-direction.

For example,

[X,Y,Z] = peaks;
f=figure;
contourf(X,Y,Z,'linestyle','none');
axis equal
[rx,ry]=rectrange(x,y,f);

One can test this function by uncommenting lines 106, 107, 125-128, 133-134 and 145. The rectangle you selected and its two vertices will be drawn in your figure.

인용 양식

Chi (2026). RectRange (https://github.com/chouj/RectRange), GitHub. 검색 날짜: .

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

GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음

버전 게시됨 릴리스 정보
1.0.0

이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.
이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.