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 views (last 30 days)
Show older comments
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 Comments
Answers (0)
See Also
Categories
Find more on Graphics Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!