how to plot with line ?
Mostrar comentarios más antiguos
I have some selected point which I would like to show with line for example I import my data as follows:
load spectra
wl=[ 900:2:1700];
t1=[181 185 226 308 325] % First set of selected points
t2= [204 207 209 222 240 260 277 303]
then I try to plot them.
plot (wl, NIR)
hold on
ylim([-0.6 1.5])
plot (wl(1,t1),-0.2,'.b')
plot (wl(1,t2),-0.4 ,'.r')
But I want to plot it as follows:

Does anyone know how to do it? how to add those lines (not manually ?)
Respuesta aceptada
Más respuestas (1)
OK, starting over -- I looked at your plot and see you really didn't use arrows at all--that makes it much simpler. Why TMW can't have an arrow that works much more easily is beyond me, but...
Start off as did before...presume you've already done the plot and ylim stuff--
hold on % hold the plot to add onto it..
x1=[w1(t1); w1(t1)]; % the first set of x points
y1=[NIR(3,t1); -0.2*ones(size(t1))]; % and y
line(x1,y1,'color','b') % the vertical lines
scatter(x1(2,:),y1(2,:),'filled','facecolor','b','marker','d') % and the markers at the ends
Now just repeat for the other set...
x2=[w1(t2); w1(t2)];
y2=[NIR(3,t2); -0.4*ones(size(t2))];
line(x2,y2,'color','r')
scatter(x2(2,:),y2(2,:),'filled','facecolor','r','marker','d')
So, if you're happy w/ this appearance, you can forget about the annotation stuff. I was trying to make it an arrow pointing down as thought at first glance that's what you'd drawn in your sample.
Categorías
Más información sobre Graph and Network Algorithms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!