필터 지우기
필터 지우기

plotting marker at partcular index

조회 수: 1 (최근 30일)
Thayumanavan
Thayumanavan 2014년 5월 19일
댓글: Thayumanavan 2014년 5월 21일
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.

채택된 답변

Jos (10584)
Jos (10584) 2014년 5월 19일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by