Effacer les filtres
Effacer les filtres

denoting vertical lines with numbers

3 vues (au cours des 30 derniers jours)
AA
AA le 23 Nov 2017
Réponse apportée : KSSV le 23 Nov 2017
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...

Réponse acceptée

KSSV
KSSV le 23 Nov 2017
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))

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by