how to get the co-ordinate values & labels when click on the plotted line
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i have plotted 3 signals(eg:3 straight lines) on axes(or figure)
how can i get the x,y values & the name of the signal when i click on the particular plotted line
thanks in advance
0 Kommentare
Akzeptierte Antwort
Muruganandham Subramanian
am 10 Dez. 2012
For e.g.
try this code:
a=[1 2 3 4];
b=[5 6 7 8];
plot(a,b)
legend('signal1');
After this, goto Tools in plotted graph, Enable Data cursor and then Options --> Enable display cursor in window. You can see the results seperate window
0 Kommentare
Weitere Antworten (1)
Muruganandham Subramanian
am 7 Dez. 2012
Bearbeitet: Muruganandham Subramanian
am 7 Dez. 2012
In plotted signal, goto Tools->enable datacursor, for signal name goto insert-> legend
3 Kommentare
Muruganandham Subramanian
am 10 Dez. 2012
Bearbeitet: Muruganandham Subramanian
am 10 Dez. 2012
Goto tools -> options->enable display cursor in window
Siehe auch
Kategorien
Mehr zu Annotations 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!