필터 지우기
필터 지우기

How to create and move a line when I put the mouse on an axes?

조회 수: 7 (최근 30일)
Collegue
Collegue 2019년 12월 23일
댓글: J. Alex Lee 2019년 12월 23일
Hello,
I would like to create a line when I colocate the mouse in front of an specific axes for example axes1. When I move though that axes the line has to move with me and when I click I hace to obtain the x position where I am.
Thank you!

답변 (1개)

J. Alex Lee
J. Alex Lee 2019년 12월 23일
does the built-in matlab function ginput() do what you want?
  댓글 수: 4
Collegue
Collegue 2019년 12월 23일
I mean the plotting area
J. Alex Lee
J. Alex Lee 2019년 12월 23일
There are many posts related to this topic, and it's worth your looking through previous Answers that match closely the behavior you are trying to achieve.
One complication is the diverging support of functionality between the classic plotting and the new web-based plotting.
Look for these keywords: WindowButtonMotionFcn, WindowButtonDownFcn, ButtonDownFcn
Minimum working example based on your original question, but it does basically a bit less than what ginput() already does. Hope you find the appropriate snippets in there to customize to your needs.
fig = figure()
ax = axes(fig,'NextPlot','add','XLimMode','manual','YLimMode','manual')
ph = xline(0,'HitTest','off')
fig.WindowButtonMotionFcn = @(o,e)WBMF(o,e,ax,ph)
ax.ButtonDownFcn = @(o,e)BDF(o,e,ax,ph)
function WBMF(this,evnt,ax,ph)
ph.Value = ax.CurrentPoint(1,1);
end
function BDF(this,evnt,ax,ph)
fprintf('clicked at x position: %.2f\n',ax.CurrentPoint(1,1))
end

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by