%给你个例子吧,不知道是否是你想要的x=0:1:100; y=x.^2;plot(x,y)xx=10*[1 2 3 4 5 6 7 8]; yy=xx.^2;for i=1:length(xx) str=strcat('(',num2str(xx(i)),',',num2str(yy(i)),')'); text(xx(i),yy(i),str);end