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
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Graphics Objects finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!