Can I control mouse cursor with using MATLAB?
이전 댓글 표시
I'd like to control mouse cursor but I'm not sure even I can do it through MATLAB. If you can, will you tell me the functions to do it, examples of using them and MATLAB version contains those functions?
채택된 답변
추가 답변 (1개)
Image Analyst
2013년 11월 29일
Control what exactly? You can control what it looks like :
set(gcf, 'Pointer', 'fullcrosshair');
set(gcf,'Pointer','watch');
% Change mouse pointer (cursor) to an arrow.
set(gcf,'Pointer','arrow');
and so on.
카테고리
도움말 센터 및 File Exchange에서 Argument Definitions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!