我是靠谱客的博主 包容飞鸟,最近开发中收集的这篇文章主要介绍matlab鼠标拖动一个点需要的最小代码,get,set和@选中-改变-拖动三个函数的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

function mousedrag
global current_selected xy_start xdata_start ydata_start
h=plot(1,1,’*’);
set(h,‘ButtonDownFcn’,@select);
set(gcf,‘WindowButtonUpFcn’,@change_state,‘WindowButtonMotionFcn’,@move)
end

function select(obj,event)
global current_selected xy_start xdata_start ydata_start
set(obj,‘Selected’,‘on’);
current_selected=obj;
xy_start=get(gca,‘CurrentPoint’);
xdata_start=get(obj,‘xdata’);
ydata_start=get(obj,‘ydata’);
end

function change_state(obj,event)
global current_selected
set(current_selected,‘Selected’,‘off’);
current_selected=0;
end

function move(obj,event)
global current_selected xy_start xdata_start ydata_start
if current_selected~=0
xy_current=get(gca,‘CurrentPoint’);
dx=xy_current(1)-xy_start(1);
dy=xy_current(3)-xy_start(3);
set(current_selected,‘xdata’,xdata_start+dx,‘ydata’,ydata_start+dy);
end
end

最后

以上就是包容飞鸟为你收集整理的matlab鼠标拖动一个点需要的最小代码,get,set和@选中-改变-拖动三个函数的使用的全部内容,希望文章能够帮你解决matlab鼠标拖动一个点需要的最小代码,get,set和@选中-改变-拖动三个函数的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部