如题所述
clear
x=[1 3 7 10];
y=[2 4 9 43];
plot(x,y,'r-')
hold on
for i=1:4
c=num2str(i);
c=[' ',c];
text(x(i),y(i),c)
end
axis([0 10 0 50])