Matlab GUI(axes中)如何获取鼠标点击时的位置

2024-12-15 22:47:43
推荐回答(2个)
回答1:

function figure1_WindowButtonMotionFcn(hObject, eventdata, handles)
p=get(gca,'CurrentPoint') ;%获得句柄
msgstr = sprintf('x = %3.3f; y = %3.3f',p(1),p(2)); %获得位置
xianshi= uicontrol('style','text','position',[100 100 100 20],'string',msgstr);

回答2:

你是用什么方法得到的呢 ?
能告诉下我吗。。。
谢谢你了!!!