Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

I am new on MATLAB and want to create an editor using GUI but I cannot handle the axes position and mouse movement (drag) in which image is loaded . Kindly help me

1 vue (au cours des 30 derniers jours)
code for button up/down function: pos = get(gca, 'currentpoint'); % get mouse location on figure x = pos(1); y = pos(2); % assign locations to x and y set(handles.text2, 'string', ['Mouse pressed @ X: ', num2str(x) , ' ,Y: ', num2str(y)]);
code for cursor movement: set (gcf, 'WindowButtonMotionFcn', @mouseMove); function mouseMove (object, eventdata) C = get (gca, 'CurrentPoint'); title(gca, ['(X,Y) = (', num2str(C(1,1)), ', ',num2str(C(1,2)), ')']);

Réponses (0)

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by