add data points to a graph

352 Ansichten (letzte 30 Tage)
maryam
maryam am 25 Sep. 2013
Beantwortet: harsh raval am 18 Okt. 2021
hi i have a matlab figure, and i'd like to highlight some important points on it, could anybody help me? tnx in advance

Akzeptierte Antwort

David Sanchez
David Sanchez am 25 Sep. 2013
Select the "Data Cursor" on the figure window and click on the point you want.
Hold "alt" to multiple selection.
  2 Kommentare
Youssef  Khmou
Youssef Khmou am 25 Sep. 2013
Good answer,
maryam
maryam am 26 Sep. 2013
It really helps. thank you very much

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Youssef  Khmou
Youssef Khmou am 25 Sep. 2013
Bearbeitet: Youssef Khmou am 25 Sep. 2013
you have to know the xy coordinates of those points to mark them . suppose i have a graph Y(X) :
X=1:10;Y=randn(1,10);
plot(X,Y), hold on,
Marked=[X(2) Y(2); X(4) Y(4)];
plot(Marked(:,1),Marked(:,2),'o');
  1 Kommentar
maryam
maryam am 26 Sep. 2013
tnx for ur answer,but i dont know the xy coordinates,just a figure.

Melden Sie sich an, um zu kommentieren.


harsh raval
harsh raval am 18 Okt. 2021
folowing is an example where i have highlited a point with red airstrike
function m = plot_cos(y, t)
plot(t,y,'b--')
hold on
[iminy,idy]=min(y);
plot(idy,iminy,'r*')
hold off
m=min(y);
end

Kategorien

Mehr zu 2-D and 3-D Plots 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!

Translated by