matlab text 显示图像中或者画图中点的坐标 imshow显示图像,要用axis on显示坐标

x=1+4*rand(1,5);

y=2+2*rand(1,5);

plot(x,y,'o-')

for i=1:length(x)

text(x(i),y(i),['(',num2str(x(i)),',',num2str(y(i)),')']) % this is important

%在(x,y)的每一点处添加文字,文字内容为(x,y)

%其中每一点的x,y用num2str把数字转化成字符串

end



当 imshow为显示图像,用axis on显示坐标


你可能感兴趣的:(matlab text 显示图像中或者画图中点的坐标 imshow显示图像,要用axis on显示坐标)