HOW CAN I CREATE REFERENCE AXES ON A 2D PLANE THAT ALLOWS ME TO DRAW AT THE INTERSECTIONS OF SUCH AXES?
2 次查看(过去 30 天)
显示 更早的评论
I want to draw with my mouse on a plane with help axes, because I cannot know at what exact coordinate my point will be drawn.
2 个评论
回答(2 个)
Adam Danz
2023-10-14
编辑:Adam Danz
2023-10-16
Does turning on the grid solve the problem?
grid on
Here are two demos that show how to display the cursor location when moving the cursor over axes
- https://www.mathworks.com/matlabcentral/answers/775147-how-to-create-mouse-movement-event-on-uiaxes-in-app-designer-to-catch-cursor-location-on-the-axes#answer_651357
- https://www.mathworks.com/matlabcentral/answers/548721-ginput-and-currentpoint-property-do-no-match-real-axes-coordinates#answer_451698
3 个评论
Image Analyst
2023-10-14
Perhaps put the tick marks at the origin?
ax = gca
ax.XAxisLocation = 'origin';
ax.YAxisLocation = 'origin';
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Exploration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!