How to view the values of points on a plot?

조회 수: 174 (최근 30일)
Suchita
Suchita 2014년 9월 5일
댓글: Gilles Desvilles 2024년 2월 18일
I am plotting a circle based on list of x and y co-ordinates in a .txt as input.How can I view the points on the circle once it is plotted?

채택된 답변

Geoff Hayes
Geoff Hayes 2014년 9월 5일
Suchita - you could can enable the data cursor mode on the figure. For example, suppose we plot the sine wave as follows
close all;
x=-2*pi:0.0001:2*pi;
y=sin(x);
h=figure;
plot(x,y)
You can then enable the data cursor mode as
datacursormode(h,'on');
Now when the cursor moves across the figure, it has the shape of the plus symbol (cross-hairs). Clicking near a point on the sine curve snaps the cross-hairs to that point and text box appears displaying the x and y coordinate.
To turn the data cursor mode off, just type
datacursormode(h,'off');
  댓글 수: 2
Suchita
Suchita 2014년 9월 5일
Thanks Geoff,that was helpful!
Gilles Desvilles
Gilles Desvilles 2024년 2월 18일
Do you know how to go to the next point on the plot without clicking on it, just starting from the initial point and using a key ? The arrow keys don't make it unfortunately.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by