HOW CAN I CREATE REFERENCE AXES ON A 2D PLANE THAT ALLOWS ME TO DRAW AT THE INTERSECTIONS OF SUCH AXES?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
Adam Danz
am 14 Okt. 2023
Bearbeitet: Adam Danz
am 16 Okt. 2023
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 Kommentare
Adam Danz
am 16 Okt. 2023
I've updated my answer to include two link to answers that may be helpful.
Image Analyst
am 14 Okt. 2023
Perhaps put the tick marks at the origin?
ax = gca
ax.XAxisLocation = 'origin';
ax.YAxisLocation = 'origin';
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Exploration 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!