x为横坐标,y为纵坐标plot(x,y,'o-')for i=1:length(x)text(x(i),y(i),['(',num2str(x(i)),',',num2str(y(i)),')'])%在(x,y)的每一点处添加文字,文字内容为(x,y)%其中每一点的x,y用num2str把数字转化成字符串end