GINPUTPLOT

버전 1.0.0.0 (853 Bytes) 작성자: Mukhtar Ullah
Finds points on the plot nearest to the mouse click.
다운로드 수: 2.7K
업데이트 날짜: 2004/12/28

라이선스 없음

GINPUTPLOT finds points on the 2-D plot nearest to the mouse click

[XI,YI] = GINPUTPLOT(N) gets N points from the current axes and
returns the nearest points on the plot of Y versus X, in length N
vectors XI and YI, where X and Y are respectively 'XData' and 'YData'
properties of all childern objects in the current axes.

[XI,YI] = GINPUTPLOT gathers an unlimited number of points until
the return key is pressed.

GINPUTPLOT(H,N) and GINPUTPLOT(H) does the same as GINPUTPLOT(N) and
GINPUTPLOT for objects with handles H.

Example:

[t,Y] = ode23(@lotka,[0 5],[20 20]');
plot(Y(:,1),Y(:,2))
[xi,yi] = ginputplot

If any suggestions/improvements/entensions, please let me know.

인용 양식

Mukhtar Ullah (2024). GINPUTPLOT (https://www.mathworks.com/matlabcentral/fileexchange/6512-ginputplot), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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

mistakenly another file was added last time. now it's correct.