Can I control mouse cursor with using MATLAB?
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 29 de Nov. de 2013
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.
1 comentario
Kazuma
el 29 de Nov. de 2013
Categorías
Más información sobre Migrate GUIDE Apps en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!