I am making goal position on matlab by the help of cursor. Like every time when code runs the position of target is different. Now my question is how can I get the location of that goal so that I can use it for calculating distance. The code
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
h=msgbox('Please Select the Target using the Left Mouse button'); uiwait(h,5); if ishandle(h) == 1 delete(h); end xlabel('Please Select the Target using the Left Mouse button','Color','black'); but=0; while (but ~= 1) %Repeat until the Left button is not clicked [xval,yval,but]=ginput(1); end xval=floor(xval); yval=floor(yval); xTarget=xval; %X Coordinate of the goal yTarget=yval; %Y Coordinate of the goal
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Graphics Objects dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!