HOW CAN I CREATE REFERENCE AXES ON A 2D PLANE THAT ALLOWS ME TO DRAW AT THE INTERSECTIONS OF SUCH AXES?
1 回表示 (過去 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 件のコメント
Adam Danz
2023 年 10 月 16 日
I've updated my answer to include two link to answers that may be helpful.
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!