How to add a subscript to a plot of ordered pairs in the order in which they are plotted.

1 view (last 30 days)
I want each ordered pair to have a subscript of when it was added. Ex: The ordered pair (0,1) would have a 2 next to the plotted point.

Accepted Answer

William Rose
William Rose on 13 Apr 2023
A=[1,1; 0,1; 0,0; .5,.5; .5,1.5];
labels=string(1:length(A));
plot(A(:,1),A(:,2),'bo')
xlabel('u'); ylabel('v')
text(A(:,1),A(:,2),labels,'VerticalAlignment','top','HorizontalAlignment','left')
Try it.

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!