denoting vertical lines with numbers

1 次查看(过去 30 天)
VLX = repmat(xy(60:60:end), 2, 1); % Vertical Line ‘x’ Locations
VLY = repmat(ylim, 24, 1)'; % Vertical Line ‘y’
% h=gcf; set(h.Children,'Xlim',[min_after_mn(f,1)-200 min_after_mn(f,1)+60]);
plot(VLX,VLY)
Hi, the above code draws vertical lines on my plot. I want to give every vertical line a number independent of the x axis. is that possible? for instance, line 1 is denoted as 1, linte 2 is denoted as 2 and so on...

采纳的回答

KSSV
KSSV 2017-11-23
Read about text.
k = repmat(1:10,10,1) ;
%%number the line
x = ones(10,1) ; y = (1:10)' ;
plot(k)
hold on
text(x,y,num2str(y))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by