概述
就是要写一个根据鼠标移动到图表位置返回坐标值的功能,网上COPY的代码如下:
function CurPosShow(OpSet)
handles=guidata(gcbo); % get handles
X=get(gca,'XLim'); % x range of current axes
Xmin=X(1);
Xmax=X(2);
Y=get(gca,'YLim'); % y range of current axes
Ymin=Y(1);
Ymax=Y(2);
AxName=get(gca,'Tag'); % name of the current axes
hTX=findobj(gcf,'tag',['TX' AxName(end)]); % find correspond text box x
hTY=findobj(gcf,'tag',['TY' AxName(end)]); % find correspond text box y
set(gcf,'windowbuttonmotionfcn',''); % dissable all callback in figure
set(gcf,'windowbuttonmoti
最后
以上就是热心戒指为你收集整理的matlab 常见gui函数,关于matlab GUI开发中windowbuttonmotionfcn函数使用的全部内容,希望文章能够帮你解决matlab 常见gui函数,关于matlab GUI开发中windowbuttonmotionfcn函数使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复