- Select a point on the curve using data cursor
- Right click on the data and change the Selection Style to Mouse Position 
How to press on specific point on curve
    8 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Kevin Tran
 am 24 Mai 2020
  
    
    
    
    
    Kommentiert: Abu Bakar Afzal
 am 17 Okt. 2023
            Hi guys,
I plotted a curve, now I want to read some specific coordinates but it won't let me.
For example I want to put the cursor when the amplitude is 0.9 and I want to read the x coordinate but I can't, it just let me press on like 0.9027 or 0.88.
So my question is how do I specifically put the cursor on the y or x coordinate I want to read?
This is my code if it helps in anyway. Thanks in advance
figure
data = ScopeData1.signals;
T =tout;
for i = 1 : 2
    data1 = data(i).values;
    plot(T, data1,'LineWidth', 1.5)
    hold on
end
    xlim([0 10])
    ylim([0 2])
    grid on
0 Kommentare
Akzeptierte Antwort
  Sai Sri Pathuri
    
 am 27 Mai 2020
        This is due to the Selection Style property which is by default set to Snap to Nearest Data Vertex. You may change this setting as below:
1 Kommentar
  Abu Bakar Afzal
 am 17 Okt. 2023
				thanku dude...soo much helpful...literrally spent almost 1.5 hr to find this and finally got it..
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Fit Postprocessing 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!


