在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
转载:http://hi.baidu.com/alec1228/item/68ea36ebe4046f3a86d9deab
第一种途径:ginput()函数 fprintf('x=%f,y=%f\n',x,y);
-------------------------------------------------
今天看了一下Matlab中响应鼠标的事件,整理如下, (1)函数WindowButtonMotionFcn,当鼠标在窗口上运动的时候就会相应此函数,于是在此函数中可以设置运动时想要的代码,如:改变鼠标的形状: if 满足某一个条件 set(gcf,'Pointer','hand') % 设置为手的形状 else set(gcf,'Pointer','arrow') % 设置为箭头的形状 end (2)函数WindowButtonDownFcn,当鼠标按下去的时候就会响应的函数,但是鼠标按下分为左键和右键,如何区分: if strcmp(get(gcf,'SelectionType'),'alt') % 此时即为右键 elseif strcmp(get(gcf,'SelectionType'),'normal') % 此时即为左键 end |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论