plotting marker at partcular index
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Thayumanavan
am 19 Mai 2014
Kommentiert: Thayumanavan
am 21 Mai 2014
I have set of eigen values in array format 19 column 8 eigen values real and imaginary part along with 1 parameter.6000*19 array I am reading the 19 arrays from xcel using xlsread command . I want to insert a marker at a particular index say 1500 while plotting the eigen values plot(Real1,Imag1,'*g',Real2,Imag2,'dg'.....Real8,Imag8)
How to do that?please give ur suggestions.
0 Kommentare
Akzeptierte Antwort
Jos (10584)
am 19 Mai 2014
I might have misinterpreted your question ...
To plot a marker at a particular index of a list of (x,y) values, try this example
xy = rand(10,2) ;
IX = 3 ; % mark point 3
plot(xy(:,1),xy(:,2),'b-') ; % blue lines
hold on ;
plot(xy(IX,1),xy(IX,2),'rs') ; % red square marker
hold off ;
Note that you can combine the two plot commands into a single one.
Weitere Antworten (0)
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!